-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
69 lines (69 loc) · 1.63 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
module.exports = {
mode: 'jit',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
sans: ['Manrope', 'Arial', 'sans-serif'],
over: ['Overpass', 'Arial', 'sans-serif'],
},
extend: {
colors: {
purple: {
DEFAULT: '#7C80F2',
50: '#D6B7FF',
100: '#C9BEF1',
200: '#986AFF',
300: '#975BF6',
400: '#7D80EB',
500: '#7479FF',
600: '#4724D6',
},
gray: {
DEFAULT: '#20232C',
0: '#F9FAFC',
50: '#F5F5F5',
100: '#DDE4E9',
200: '#ABBECF',
300: '#637381',
400: '#546992',
500: '#212B36',
600: '#1B1E2A',
},
blue: {
DEFAULT: '#3164FA',
0: '#EDF3F9',
20: '#B8D5F7',
50: '#7CA7F9',
100: '#00A3FF',
200: '#367BFF',
300: '#4724D6',
},
cyan: {
DEFAULT: '#0FEEF1',
50: '#95ECFF',
100: '#16E7F2',
200: '#08BEE5',
300: '#0792AF',
},
},
dropShadow: {
ss: '0px 1px 3px rgba(0, 0, 0, 0.15)',
},
backgroundImage: (theme) => ({
home: "url('/images/homeBg.svg')",
aboutBanner: "url('/images/aboutBanner.png')",
about: "url('/images/aboutBg.svg')",
aboutParameters: "url('/images/aboutParameters.png')",
config: "url('/images/configBg.png')",
form: "url('/images/submitBg.png')",
}),
},
},
variants: {
extend: {},
},
plugins: [],
}