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