-
Notifications
You must be signed in to change notification settings - Fork 38
/
tailwind.config.js
69 lines (69 loc) · 2.41 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
67
68
69
const colors = require('tailwindcss/colors')
module.exports = {
plugins: [
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
],
purge: {
options: {
safelist: [
'-rotate-3', 'rotate-2', '-rotate-3', 'rotate-3', 'from-violet', 'to-primary-500', 'bg-gradient-to-r', 'from-blue-700', 'to-blue-400', 'from-purple-700', 'to-pink-900', 'from-yellow-600', 'to-red-600',
'bg-primary-400', 'bg-purple-600', 'text-teal-400', 'bg-blue-400', 'bg-purple-400', 'bg-green-400', 'bg-indigo-400', 'bg-pink-400', 'bg-yellow-400', 'bg-red-400', 'w-10', 'w-6', 'stroke-current',
'text-primary-400', 'text-blue-400', 'text-purple-400', 'text-green-400', 'text-indigo-400', 'text-pink-400', 'text-red-400'
, 'text-pink-400', 'text-indigo-400', 'text-blue-400', 'text-teal-400', 'text-primary-400', 'text-purple-400', 'text-green-400', 'text-cyan-400'
]
}
},
theme: {
extend: {
screens: {
'xxs': {'max': '350px'},
},
colors: {
trueGray: colors.trueGray,
cyan: colors.cyan,
teal: {
100: '#CCFBF1',
200: '#99F6E4',
300: '#5EEAD4',
400: '#2DD4BF',
500: '#14B8A6',
600: '#0D9488',
700: '#0F766E',
},
primary: {
100: '#ffc592',
200: '#ffb97c',
300: '#ffae66',
400: '#ffa251',
500: '#ff973b',
600: '#ff8b25',
700: '#e67d21',
800: '#cc6f1e',
},
gradient1: '#fc4a1a',
gradient2: '#f7b733',
gradient3: '#F27121',
background: '#0c112b',
background2: '#1e214a',
violet: '#801354',
violet2: '#9B0ABF',
card_background: '#303653',
card_background_accent: '#454a64',
card_background_dark: '#070a1a',
card_background2: '#3E3F64'
},
backgroundImage: () => ({
'landing-pattern': 'url(\'~assets/images/background/landing_bg.svg\')',
'final-pattern': 'url(\'~assets/images/background/final_edited.svg\')',
'triangle-pattern': 'url(\'~assets/images/background/triangle_background.svg\')',
'circle-pattern': 'url(\'~assets/images/background/circle_background.svg\')',
'rect-pattern': 'url(\'~assets/images/background/square_background.svg\')',
}),
fontFamily: {
'sans': ['Manrope'],
'head': ['Manrope']
}
}
}
}