diff --git a/src/essentials/Colors/RedesignedColors.ts b/src/essentials/Colors/ModernColors.ts similarity index 100% rename from src/essentials/Colors/RedesignedColors.ts rename to src/essentials/Colors/ModernColors.ts diff --git a/src/essentials/Colors/docs/SemanticColorsTable.tsx b/src/essentials/Colors/docs/SemanticColorsTable.tsx index 1ccf8b78a..83325a026 100644 --- a/src/essentials/Colors/docs/SemanticColorsTable.tsx +++ b/src/essentials/Colors/docs/SemanticColorsTable.tsx @@ -5,7 +5,7 @@ import styled from 'styled-components'; import { Box, Input, Table, TableCell, TableHeaderCell, TableRow } from '../../../components'; import { generateCssVariableEntries, generateCssVariables, getSemanticValue } from '../../../utils/cssVariables'; import { Colors as ClassicColors, SemanticColors as ClassicSemanticTokens } from '../Colors'; -import { Colors as ModernColors, SemanticColors as ModernSemanticTokens } from '../RedesignedColors'; +import { Colors as ModernColors, SemanticColors as ModernSemanticTokens } from '../ModernColors'; const ColorBlock = styled.div<{ color: string }>` background-color: ${p => p.color}; diff --git a/src/essentials/index.ts b/src/essentials/index.ts index 56a30f1bd..5ed14f4cf 100644 --- a/src/essentials/index.ts +++ b/src/essentials/index.ts @@ -2,4 +2,4 @@ export { Elevation } from './Elevation/Elevation'; export { Spaces } from './Spaces/Spaces'; export { Breakpoints, MediaQueries } from './Breakpoints/Breakpoints'; export { GlobalStyle as ClassicColors } from './Colors/Colors'; -export { GlobalStyle as ModernColors } from './Colors/RedesignedColors'; +export { GlobalStyle as ModernColors } from './Colors/ModernColors';