forked from zoltantothcom/Design-Patterns-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.dark.js
More file actions
43 lines (32 loc) · 849 Bytes
/
theme.dark.js
File metadata and controls
43 lines (32 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { THEME_DARK } from '../../static/constants/themes';
import * as C from '../../static/constants/colors';
export const themeDark = {
name: THEME_DARK,
background: C.COAL_MINE,
// button
buttonBackground: C.TUNDORA,
buttonBorder: C.TUNDORA,
buttonColor: C.WILD_SAND,
buttonBackgroundHover: C.GRAY,
buttonBorderHover: C.GRAY,
buttonColorHover: C.WHITE,
// title
title: C.CRIMSON,
titleBackground: C.MINE_SHAFT,
// menu link
link: C.SILVER,
active: C.WHITE,
// header toggle
toggleBackground: C.TUNDORA,
toggleBorder: C.DOVE,
toggleFill: C.SILVER,
toggleBackgroundHover: C.DOVE,
toggleFillHover: C.WILD_SAND,
toggleActiveBackground: C.SILVER,
toggleActiveFill: C.TUNDORA,
toggleActiveBorder: C.SILVER,
// text and header
header: C.WILD_SAND,
text: C.SILVER,
border: C.TUNDORA
};