-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (66 loc) · 1.52 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
63
64
65
66
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
primary: ['Libre Franklin', 'sans-serif'],
secondary: ['Londrina Solid', 'sans-serif']
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#3B8CF0',
orange: '#FFA62B',
violet: '#210535',
black: '#000505',
green: {
DEFAULT: '#AAED4A',
25: '#353A2D'
},
red: {
DEFAULT: '#EE6055',
25: '#491331'
},
wgb: {
grey2: '#E4E6E9'
},
gradient: {
start: 'rgba(49, 12, 74, 0.5)',
end: 'rgba(6, 14, 37, 0.95)'
},
blue: {
DEFAULT: '#3772FF',
50: '#1B7AEE'
},
white: {
DEFAULT: '#FEFEFE',
50: '#EFEEE9',
250: '#B8B3B6',
500: '#807883',
750: '#493D50',
900: '#281A31',
950: '#1D0E27',
1000: '#12021D'
},
purple: '#71458E'
},
extend: {
transitionDuration: {
350: '350ms'
},
transitionTimingFunction: {
'rk-easing': 'cubic-bezier(.15, 1.15, 0.6, 1.00)'
},
animation: {
'pulse-slow': 'pulse-slow 5s cubic-bezier(0.4, 0, 0.6, 1) infinite'
},
keyframes: {
'pulse-slow': {
'0%, 100%': { opacity: 0.5 },
'50%': { opacity: 0.2 }
}
}
}
},
plugins: [require('@headlessui/tailwindcss')]
}