-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (53 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/uikit/**/*.{js,ts,jsx,tsx,mdx}',
'./src/views/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
colors: {
darkTitle: '#251F04',
subTitle: '#777369',
mainColor: '#CBB26A',
hoverColor: '#DBAF5A',
borderColor: '#E7E0CF',
borderColor: {
100: '#E7E0CF',
400: '#F8CA0A',
500: '#E7A634',
},
lightBg: '#F8F4EE',
body: '#CACCCD',
deepBlue: '#162435',
brightBlue: '#2E5CFF',
darkGray: '#34485B',
charcoal: '#505053',
fireRed: '#FF0303',
// Legacy
dimGray: '#B8B6CB',
pink: '#ED00C9',
purple: '#BD00ED',
left: '#1D023B',
right: '#17023E',
green: '#26fffe',
blue: '#0000AF',
success: '#55a361',
error: '#cf3a41',
warn: '#edb831',
info: '#006cff',
placeholder: '#757384',
},
},
plugins: [],
};