forked from zoltantothcom/Design-Patterns-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.light.js
More file actions
43 lines (32 loc) · 812 Bytes
/
theme.light.js
File metadata and controls
43 lines (32 loc) · 812 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_LIGHT } from '../../static/constants/themes';
import * as C from '../../static/constants/colors';
export const themeLight = {
name: THEME_LIGHT,
background: C.WHITE,
// button
buttonBackground: C.PRIM,
buttonBorder: C.ORCHID,
buttonColor: C.PLUM,
buttonBackgroundHover: C.PLUM,
buttonBorderHover: C.PLUM,
buttonColorHover: C.WHITE,
// title
title: C.PLUM,
titleBackground: C.PRIM,
// menu link
link: C.PLUM,
active: C.ORCHID,
// header toggle
toggleBackground: C.PRIM,
toggleBorder: C.ORCHID,
toggleFill: C.BOUQUET,
toggleBackgroundHover: C.ORCHID,
toggleFillHover: C.PLUM,
toggleActiveBackground: C.BOUQUET,
toggleActiveFill: C.PRIM,
toggleActiveBorder: C.PLUM,
// text and header
header: C.PLUM,
text: C.PLUM,
border: C.PRIM
};