-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.mjs
78 lines (68 loc) · 2.23 KB
/
tailwind.config.mjs
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
78
import defaultTheme from 'tailwindcss/defaultTheme';
/*
*
* @description Tailwind config
*
*/
export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
keyframes: {
rotateUp: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(-180deg)' },
},
rotateDown: {
'0%': { transform: 'rotate(-180deg)' },
'100%': { transform: 'rotate(0deg)' },
},
},
animation: {
rotateUp: 'rotateUp 0.3s forwards',
rotateDown: 'rotateDown 0.3s forwards',
},
fontSize: {
'2.5xl': ['1.6875rem', '1.2'],
'3.5xl': ['2rem', '1.2'],
'4.5xl': ['2.6875rem', '1.2'],
'5.5xl': ['3.375rem', '1'],
'6.5xl': ['4.125rem', '1'],
'7.5xl': ['5.25rem', '1'],
'8.5xl': ['6.875rem', '1'],
},
fontFamily: {
sans: ['"Raleway"', ...defaultTheme.fontFamily.sans],
},
colors: {
peachPuff: '#FDDDB7',
eggShell: '#F1E7DF',
dustStorm: '#EBCACC',
brightUbe: '#CBAAF4',
paleViolet: '#BAA3FA',
darkViolet: '#8B6AB6',
weirdViolet: '#C8B8F6',
blueGreen: '#0FA3B1',
cadetBlue: '#0C6975',
deepMarine: '#2B6469',
slateGray: '#31495C',
copper: '#DE846E',
khakiYellow: '#F0E698',
dimGray: '#4A4F50',
accordionHover: '#D4EBED',
footerBg: '#85C1C5',
tbrand: '#2B6469',
'tbrand-hover': '#3F9098',
'tbrand-mouse-down': '#1D7882',
'tbrand-highlight': '#00CEDB',
},
translate: {
0.75: '0.1875rem', // (0.125rem + 0.25) / 2
},
backgroundImage: {
'faq-image': "url('/src/assets/background/faqBackground.png')",
}
},
},
plugins: [],
};