-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
95 lines (94 loc) · 2.58 KB
/
tailwind.config.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/pages/popup/**/*.{tsx,html}', './src/components/**/*.tsx'],
theme: {
extend: {
spacing: {
xxxsmall: '2px',
xxsmall: '4px',
xsmall: '8px',
small: '12px',
medium: '14px',
default: '16px',
large: '20px',
xlarge: '24px',
xxlarge: '32px',
xxxlarge: '48px',
xxxxlarge: '64px',
gutter: '24px', // used for spacing between containers
},
borderRadius: {
xxsmall: '2px',
xsmall: '3px',
small: '4px',
medium: '8px',
large: '12px',
xlarge: '16px',
},
colors: {
text: '#082864',
textLight: '#7886A3',
textWhite: '#FFFFFF',
// ----- Primary Palette ----- //
navy: '#1348A5',
navyDark: '#103D8C',
navyLight: '#2B5AAE',
navyFocus: '#D0DAED',
navyBackground: '#E7EDF6',
orange: '#FF7369',
orangeDark: '#FF685F',
orangeLight: '#FF7E73',
orangeFocus: '#FFE3E1',
orangeBackground: '#FFF1F0',
orangeText: '#F05C54',
yellow: '#FFD278',
yellowDark: '#FFCE6C',
yellowLight: '#FFD684',
yellowFocus: '#FFF6E4',
yellowBackground: '#FFFAF1',
yellowText: '#BC883F',
blue: '#32AAF0',
blueDark: '#2DA2EE',
blueLight: '#37B2F1',
blueFocus: '#D6EEFC',
blueBackground: '#EAF6FD',
blueText: '#3D92DE',
iosDefaultBlue: '#007AFF',
// ----- Gray Variations ----- //
black: '#082864',
trueBlack: '#000000',
grayDark: '#7886A3',
gray: '#C8D2E1',
grayLight: '#DAE1EA',
grayFocus: '#E4E9F0',
grayBackground: '#F0F4F8',
grayLightBackground: '#F7F8FB',
white: '#FFFFFF',
// ----- Secondary Palette ----- //
red: '#F0648C',
redDark: '#EE5A81',
redLight: '#F16E97',
redFocus: '#FCE0E8',
redBackground: '#FDEFF3',
redText: '#ED5685',
green: '#19D2A5',
greenDark: '#17CE9C',
greenLight: '#1BD6AE',
greenFocus: '#D1F6ED',
greenBackground: '#E8FAF6',
greenText: '#489D8C',
greenSpecial: '#00A6A4',
teal: '#91DCEB',
purple: '#6E87F0',
purpleBackground: '#E2E7FC',
lime: '#CDDC39',
limeBackground: '#F5F8D7',
pink: '#EA80FC',
pinkBackground: '#FBE6FE',
indigo: '#3D5AFE',
indigoBackground: '#D8DEFF',
},
},
},
plugins: [],
};