-
Notifications
You must be signed in to change notification settings - Fork 609
/
light.js
37 lines (34 loc) · 1.08 KB
/
light.js
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
import Color from 'color';
import {
blue500,
red500,
white,
black,
} from '../colors';
import spacing from '../spacing';
import typography from '../typography';
export default {
spacing,
typography,
fontFamily: 'Roboto',
palette: {
// main theme colors
primaryColor: blue500,
accentColor: red500,
// text color palette
primaryTextColor: Color(black).alpha(.87).toString(),
secondaryTextColor: Color(black).alpha(.54).toString(),
alternateTextColor: white,
// backgournds and borders
canvasColor: white,
borderColor: Color(black).alpha(.12).toString(),
// https://material.google.com/style/color.html#color-text-background-colors
disabledColor: Color(black).alpha(.38).toString(),
disabledTextColor: Color(black).alpha(.26).toString(),
activeIcon: Color(black).alpha(.54).toString(),
inactiveIcon: Color(black).alpha(.38).toString(),
// pickerHeaderColor: cyan500,
// clockCircleColor: faintBlack,
// shadowColor: fullBlack,
},
};