-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
77 lines (76 loc) · 2.07 KB
/
tailwind.config.js
File metadata and controls
77 lines (76 loc) · 2.07 KB
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
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
safelist: [
'locked',
'bg-minima',
'bg-feather',
'bg-liquid',
'bg-thumbnail-minima',
'bg-thumbnail-liquid',
'bg-thumbnail-mountains',
'bg-thumbnail-desert',
'bg-thumbnail-galaxy',
'bg-thumbnail-feather',
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
red: colors.red,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
blue: colors.blue,
violet: colors.violet,
teal: colors.teal,
neutral: colors.neutral,
b: '#3f3cbb',
},
screens: {
sm: '390px',
md: '768px',
lg: '976px',
xl: '1440px',
},
extend: {
backgroundImage: {
minima: "url('../assets/wallpapers/minima.jpg')",
feather: "url('../assets/wallpapers/feather.jpg')",
liquid: "url('../assets/wallpapers/liquid.jpg')",
'thumbnail-minima': "url('../assets/thumbnails/minima.png')",
'thumbnail-liquid': "url('../assets/thumbnails/liquid.png')",
'thumbnail-mountains': "url('../assets/thumbnails/mountains.png')",
'thumbnail-desert': "url('../assets/thumbnails/desert.png')",
'thumbnail-galaxy': "url('../assets/thumbnails/galaxy.png')",
'thumbnail-feather': "url('../assets/thumbnails/feather.png')",
},
colors: {
grey80: '#A7A7B0',
contrast1: '#17191C',
contrast2: '#282b2e',
contrast4: '#52535B',
statusBlue: '#4FDAE3',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
},
animation: {
fadeIn: 'fadeIn 0.5s',
fadeIn1: 'fadeIn 1s',
fadeIn2: 'fadeIn 2s',
fadeIn3: 'fadeIn 3s',
fadeIn5: 'fadeIn 5s',
fadeIn7: 'fadeIn 7s',
},
},
},
plugins: [],
};