-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (58 loc) · 1.45 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
purpleLight: '#A881E6',
purpleNormal: '#7450AC',
purpleDark: '#523480',
gray: {
'100': '#FBF9FE',
'200': '#AFABB6',
'300': '#252529',
'400': '#17171A',
'500': '#111112',
'600': '#0C0C0D',
'800': '#EDEAF0'
},
successLight: '#4E995E',
success: '#2F723D',
pink: '#DB5BBF',
pinkDark: '#251622',
orange: '#E07B67',
orangeDark: '#261A17',
yellow: '#BB9F3A',
yellowDark: '#211E12',
green: '#8CAD51',
greenDark: '#1C2015',
blue: '#7B94CB',
blueDark: '#1A1D23'
},
screens: {
'2xl': {'max': '1535px'},
// => @media (max-width: 1535px) { ... }
'xl': {'max': '1279px'},
// => @media (max-width: 1279px) { ... }
'lg': {'max': '1023px'},
// => @media (max-width: 1023px) { ... }
'md': {'max': '600px'},
// => @media (max-width: 767px) { ... }
'sm': {'max': '425px'},
// => @media (max-width: 425px) { ... }
},
animation: {
appear: 'appear .5s backwards'
},
keyframes: {
appear: {
'0%': { opacity: '0', scale: '.95' }
}
}
},
},
plugins: [],
}