Skip to content

Commit 859dce0

Browse files
committed
feat(themes): add 'the Sities USA', 'Travel' and 'Molecule' theme
1 parent 7498ccc commit 859dce0

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed

src/components/common/themes.js

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,126 @@ themes.default = {
4242
flatDark: '#9e9e9e'
4343
};
4444

45+
themes.molecule = {
46+
canvas: '#f1f5f6',
47+
material: '#c2c1c2',
48+
materialDark: '#9a9e9c',
49+
50+
borderDarkest: '#4b4d4e',
51+
borderLightest: '#d79099',
52+
borderDark: '#993845',
53+
checkmarkDisabled: '#993845',
54+
borderLight: '#dfe0e3',
55+
56+
headerBackground: '#a03d49',
57+
headerText: '#f1f5f6',
58+
headerNotActiveBackground: '#7f7f7f',
59+
headerNotActiveText: '#c2c1c2',
60+
61+
text: '#020102',
62+
textInvert: '#f1f5f6',
63+
textDisabled: '#993845',
64+
textDisabledShadow: '#d79099',
65+
66+
inputText: '#020102',
67+
inputTextInvert: '#f1f5f6',
68+
inputTextDisabled: '#993845',
69+
inputTextDisabledShadow: '#d79099',
70+
71+
tooltip: '#fefbcc',
72+
73+
anchor: '#1034a6',
74+
anchorVisited: '#440381',
75+
76+
hoverBackground: '#70a3ce',
77+
checkmark: '#020102',
78+
79+
progress: '#a03d49',
80+
81+
flatLight: '#d8d8d8',
82+
flatDark: '#9e9e9e'
83+
};
84+
85+
themes.travel = {
86+
canvas: '#d8d0c8',
87+
material: '#908070',
88+
materialDark: '#9a9e9c',
89+
90+
borderDarkest: '#28251e',
91+
borderLightest: '#baae9f',
92+
borderDark: '#695f50',
93+
checkmarkDisabled: '#695f50',
94+
borderLight: '#9d8f80',
95+
96+
headerBackground: '#404878',
97+
headerText: '#d8d0c8',
98+
headerNotActiveBackground: '#605848',
99+
headerNotActiveText: '#908070',
100+
101+
text: '#28251e',
102+
textInvert: '#ffffff',
103+
textDisabled: '#695f50',
104+
textDisabledShadow: '#baae9f',
105+
106+
inputText: '#28251e',
107+
inputTextInvert: '#ffffff',
108+
inputTextDisabled: '#695f50',
109+
inputTextDisabledShadow: '#baae9f',
110+
111+
tooltip: '#fefbcc',
112+
113+
anchor: '#1034a6',
114+
anchorVisited: '#440381',
115+
116+
hoverBackground: '#48604f',
117+
checkmark: '#28251e',
118+
119+
progress: '#48604f',
120+
121+
flatLight: '#9d8f80',
122+
flatDark: '#695f50'
123+
};
124+
125+
themes.theSixtiesUSA = {
126+
canvas: '#ffffff',
127+
material: '#d067d7',
128+
materialDark: '#9a9e9c',
129+
130+
borderDarkest: '#010001',
131+
borderLightest: '#df9be7',
132+
borderDark: '#6c1f71',
133+
checkmarkDisabled: '#6c1f71',
134+
borderLight: '#d982de',
135+
136+
headerBackground: '#050080',
137+
headerText: '#ffffff',
138+
headerNotActiveBackground: '#a130a9',
139+
headerNotActiveText: '#df9be7',
140+
141+
text: '#010001',
142+
textInvert: '#010001',
143+
textDisabled: '#6c1f71',
144+
textDisabledShadow: '#df9be7',
145+
146+
inputText: '#010001',
147+
inputTextInvert: '#010001',
148+
inputTextDisabled: '#6c1f71',
149+
inputTextDisabledShadow: '#df9be7',
150+
151+
tooltip: '#fefbcc',
152+
153+
anchor: '#1034a6',
154+
anchorVisited: '#440381',
155+
156+
hoverBackground: '#0f0',
157+
checkmark: '#010001',
158+
159+
progress: '#0f0',
160+
161+
flatLight: '#df9be7',
162+
flatDark: '#d067d7'
163+
};
164+
45165
themes.candy = {
46166
canvas: '#EFF1F3',
47167
material: '#E5A4CB',

0 commit comments

Comments
 (0)