-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 1.43 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
/* eslint-disable @typescript-eslint/no-var-requires */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
borderRadius: {
...defaultTheme.borderRadius,
DEFAULT: '.375rem',
},
opacity: {
15: '.15',
},
colors: {
peach: '#FFA47E',
gray: {
50: '#F6F8F8',
100: '#F1F3F4',
200: '#E2E7E9',
300: '#C7CED1',
400: '#9DAAAE',
500: '#73858C',
600: '#5C6A70',
700: '#455054',
800: '#232829',
900: '#0B0C0D',
},
black: '#000000',
// tmp colors that should be fixed according to 100-900 scale
'cream-light': '#FEFDF0',
'blue-light': '#6AC4E9',
primary: {
50: '#EEE7FF',
100: '#D2C5FE',
200: '#B39EFF',
300: '#9074FF',
400: '#7054FF',
DEFAULT: '#4733FF',
500: '#4733FF',
600: '#342FF8',
700: '#0027F0',
800: '#0021EB',
900: '#1013E5',
},
},
zIndex: {
'-1': '-1',
},
fontFamily: {
sans: ['Monument Grotesk', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};