forked from FuelLabs/swayswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (56 loc) · 1.2 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
const colors = require('tailwindcss/colors');
delete colors['lightBlue'];
delete colors['warmGray'];
delete colors['trueGray'];
delete colors['coolGray'];
delete colors['blueGray'];
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
screens: {
sm: '640px',
md: '960px',
lg: '1440px',
},
colors: {
...colors,
gray: {
50: '#E8EAED',
100: '#D4D8DD',
200: '#AAB1BB',
300: '#7C8897',
400: '#58626F',
500: '#363C44',
600: '#2B3036',
700: '#202328',
800: '#17191C',
900: '#0B0D0E',
},
primary: {
50: '#eff6f5',
100: '#d2eff2',
200: '#9fe5e2',
300: '#66cbc0',
400: '#2aac98',
500: '#1e9071',
600: '#1b7958',
700: '#195d46',
800: '#134034',
900: '#0d2727',
},
},
fontFamily: {
sans: ['InterVariable', 'sans-serif'],
display: ['RalewayVariable', 'sans-serif'],
},
},
variants: {
extend: {
backgroundColor: ['disabled'],
textColor: ['disabled'],
scale: ['disabled'],
},
},
plugins: [require('@tailwindcss/typography')],
};