-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (77 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
boxShadow: {
button: '5px 5px 7px 0px rgba(0, 0, 0, 0.3)',
'button-md': '6px 6px 2px 2px rgba(0, 0, 0, 0.3)',
'button-sm': '4px 4px 2px 0px rgba(0, 0, 0, 0.3)',
'button-xs': '2px 2px 2px 0px rgba(0, 0, 0, 0.3)',
},
colors: {
primary: {
50: '#F8E5E5',
100: '#F1CCCC',
200: '#E4A8A8',
300: '#D88383',
400: '#CC5F5F',
500: '#D66969',
600: '#B34F4F',
700: '#8A3C3C',
800: '#622828',
900: '#3A1414',
},
secondary: {
50: '#EEF3E9',
100: '#DCE7D4',
200: '#BACDAA',
300: '#99B480',
400: '#779A56',
500: '#567F2D',
600: '#446624',
700: '#334C1B',
800: '#233316',
900: '#121A0D',
},
'accent-p': {
50: '#E6F8F8',
100: '#B3E8E8',
200: '#80D8D8',
300: '#4DC9C9',
400: '#33B3B3',
500: '#299696',
600: '#237474',
700: '#1D5858',
800: '#164545',
900: '#0E3030',
},
'accent-s': {
50: '#E6E6E6',
100: '#CCCCCC',
200: '#999999',
300: '#666666',
400: '#4D4D4D',
500: '#333333',
600: '#2D2D2D',
700: '#262626',
800: '#1F1F1F',
900: '#030303',
},
},
fontFamily: {
sans: ['Montserrat-Thin', 'Helvetica', 'Arial', 'sans-serif'],
serif: ['MutantAcademyDCBB'],
'serif-bold': ['MutantAcademyBB'],
},
},
},
plugins: [require('tailwindcss-animated')],
variants: {
extend: {
borderRadius: ['active', 'hover', 'focus'],
boxShadow: ['active', 'hover', 'focus'],
scale: ['active', 'focus-within', 'hover'],
},
},
};