forked from teo-sprint/typo-saurus-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 883 Bytes
/
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
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
base: {
light: '#FFFFFF',
dark: '#242835',
bg: '#242835e3',
},
red: {
light: '#FF3131',
dark: '#D10000',
},
green: {
light: '#41AB00',
dark: '#5EF800',
},
'grey-600': {
dark: 'rgba(255, 255, 255, 0.6)',
},
'grey-300': {
light: 'rgba(0, 0, 0, 0.3)',
dark: 'rgba(255, 255, 255, 0.3)',
},
'grey-50': {
light: 'rgba(0, 0, 0, 0.05)',
dark: 'rgba(255, 255, 255, 0.05)',
},
},
},
fontFamily: {
d2coding: ['D2 Coding'],
},
fontSize: {
body: ['18px', '21px'],
display: ['28px', '32px'],
},
},
plugins: [],
};