Skip to content

Commit 1ccb794

Browse files
author
Nikolai Lopin
authored
feat: remove brand colors from semantic colors object (#208)
1 parent 90b94da commit 1ccb794

File tree

1 file changed

+1
-47
lines changed

1 file changed

+1
-47
lines changed

src/essentials/Colors/Colors.ts

Lines changed: 1 addition & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export enum Colors {
22
WHITE = '#FFFFFF',
3+
BLACK = '#000000',
34
AUTHENTIC_BLUE_1100 = '#000F1F',
45
AUTHENTIC_BLUE_900 = '#001E3E',
56
AUTHENTIC_BLUE_550 = '#637689',
@@ -32,53 +33,6 @@ export enum Colors {
3233
}
3334

3435
export const SemanticColors = {
35-
brand: {
36-
white: '#FFFFFF',
37-
black: '#000000',
38-
actionBlue: {
39-
'50': '#F1F7FD',
40-
'100': '#E4EFFB',
41-
'150': '#D6E6F9',
42-
'350': '#9FC5F1',
43-
'900': '#096BDB',
44-
'1000': '#0750A4'
45-
},
46-
freedomRed: {
47-
'900': '#FF0A2B',
48-
'1000': '#BF0820'
49-
},
50-
authenticBlue: {
51-
'50': '#F1F2F4',
52-
'200': '#C6CDD4',
53-
'350': '#9CA7B4',
54-
'550': '#637689',
55-
'900': '#001E3E',
56-
'1100': '#000F1F'
57-
},
58-
positiveGreen: {
59-
'50': '#F1FAF5',
60-
'350': '#9ED9BB',
61-
'900': '#069D4F',
62-
'1000': '#05763B'
63-
},
64-
attentionYellow: {
65-
'50': '#FFFCF1',
66-
'350': '#FFEB9C',
67-
'900': '#FFCC00'
68-
},
69-
negativeOrange: {
70-
'50': '#FFF6F1',
71-
'350': '#FFC09E',
72-
'900': '#FF5E05',
73-
'1000': '#BF4704'
74-
},
75-
bumpyMagenta: {
76-
'50': '#FFF1FF',
77-
'350': '#FF9CFC',
78-
'900': '#FF00F7',
79-
'1000': '#BF00B9'
80-
}
81-
},
8236
text: {
8337
primary: Colors.AUTHENTIC_BLUE_900,
8438
primaryInverted: Colors.WHITE,

0 commit comments

Comments
 (0)