-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.cjs
70 lines (61 loc) · 1.49 KB
/
tailwind.config.cjs
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
const { fontFamily } = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte}'],
safelist: ['text-wind', 'text-rain', 'text-snow', 'text-sunny', 'text-clouds', 'text-clear', 'text-thunderstorm'],
darkMode: 'class',
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '1024px'
},
fontFamily: {
manrope: ['Manrope', ...fontFamily.sans],
montserrat: ['Montserrat', ...fontFamily.sans]
},
colors: {
wind: '#27B1FF',
rain: '#4E8DB1',
snow: '#8EC1DD',
sunny: '#FF8E27',
clear: '#FF8E27',
clouds: '#8EC1DD',
thunderstorm: '#BF8EDD',
gray: {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827'
},
black: '#0F141E',
white: '#FFFFFF',
transparent: 'transparent'
},
dropShadow: {
sun: '0 25px 25px rgb(251, 198,43,0.3)',
moon: '0 25px 25px rgb(255,255,255,0.2)'
},
keyframes: {
float: {
'0%': { transform: 'translatey(0px)' },
'50%': { transform: 'translatey(-20px)' },
'100%': { transform: 'translatey(0px)' }
}
},
animation: {
float: 'float 6s ease-in-out infinite'
},
extend: {
borderRadius: {
'4xl': '42px'
}
}
}
}