-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
transform: ['group-hover'],
rotate: ['group-hover'],
colors: {
'ice-blue': '#6EB3F4',
'dark-indigo': '#080737',
'pink': '#D688C1',
'lavender': '#9773E0',
'sky': '#2F91D3',
'teal': '#2DCDC2',
'light-blue': '#579dff',
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
playwrite: ["Playwrite DK Loopet", 'cursive'],
playwritehr: ["Playwrite HR", 'cursive'],
playwritehu: ["Playwrite HU", 'cursive'],
dancingscript: ["Dancing Script", 'cursive'],
varelaround: ["Varela Round", 'sans-serif'],
},
fontSize: {
'welcomeSizeLg': '10rem',
'welcomeSizeMd': '9rem',
'welcomeSizeSm': '8rem',
'xxs': '0.5rem',
},
dropShadow: {
'blue-glow': '0 0 15px rgba(115, 189, 255, 0.8)',
'small-blue-glow': '0 0 10px rgba(115, 189, 255, 0.3)',
},
},
},
plugins: [],
}