-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 1.13 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
important: true,
theme: {
extend: {
colors: {
black: '#111111',
blue: {
lightest: '#f3f5f8',
lighter: '#66aaf0',
light: '#006AB7',
DEFAULT: '#00528D',
dark: '#004374',
},
'blue-grey': '#ACD5D7',
green: '#CAEED8',
'dark-green': '#33a15e',
red: '#F9DCD7',
'dark-red': '#Df472C',
orange: {
DEFAULT: '#E58F19',
50: '#FCF3E7',
100: '#FAE8D0',
200: '#F5D2A2',
300: '#F0BC74',
400: '#EBA546',
500: '#E58F19',
600: '#B77214',
700: '#89560F',
800: '#5B390A',
900: '#2D1C05',
},
transparent: 'transparent',
'dark-grey': '#283542',
purple: '#00528D',
'dark-purple': '#4D37DD',
yellow: '#FF8326',
},
},
},
variants: {
extend: {},
},
// eslint-disable-next-line global-require
plugins: [require('@tailwindcss/typography')],
};