-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (52 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
53 lines (52 loc) · 1.1 KB
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
screens: {
xs: '500px',
...defaultTheme.screens,
},
fontFamily: {
sans: ['Atkinson Hyperlegible', 'sans-serif'],
},
fontSize: {
H1: ['48px', '60px'],
H2: ['32px', '40px'],
H3: ['20px', '25px'],
Body: ['18px', '22px'],
'4X4': ['56px', '0px'],
'6X6': ['44px', '0px'],
'4X4-mobile': ['40px', '0px'],
'6X6-mobile': ['24px', '30px'],
},
colors: {
dark: '#152938',
orange: {
DEFAULT: '#FDA214',
hover: '#FFB84A',
},
blue: {
DEFAULT: '#304859',
hover: '#6395B8',
light: '#BCCED9',
},
grey: {
DEFAULT: '#DFE7EC',
dark: '#304859',
},
white: {
DEFAULT: '#F2F2F2',
},
},
textColor: {
dark: '#152938',
white: '#FCFCFC',
grey: {
light: '#7191A5',
dark: '#304859',
},
},
},
plugins: [],
};