-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
112 lines (112 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
darkMode: 'class',
theme: {
extend: {
colors: {
btn: {
primary: '#e3e3e3',
secondary: '#29292c',
},
text: {
primary: '#040404',
secondary: 'rgba(255,255,255,0.6)',
icon: "#4F4F4F",
file: "#BDBDBD"
},
link: {
primary: "#EEEEEE",
secondary: "#27292D",
},
label: {
primary: "#424242",
secondary: "#FFFFFF",
},
placeholder: {
primary: "rgba(51,51,51,0.54)",
secondary: "rgba(255,255,255,0.54)",
},
disabled: {
primary: "#E0E0E0",
secondary: "#424242",
},
focus: {
primary: "#374151",
secondary: "#1E1E1E",
},
border: {
primary: '#EEEEEEC',
secondary: '#3A3A3A',
},
bg: {
primary: '#FFFFFF',
secondary: '#121316',
},
hover: {
primary: "#00000042",
secondary: "#00000042",
},
checkbox: {
primary: '#bbbbbbb3',
secondary: '#64748b',
},
accent: {
primary: '#27293D',
secondary: '#64748b',
},
sidebar: {
primary: "#fafafa",
secondary: "#1A1B1E",
},
input: {
primary: "#eeeeee",
secondary: "#29292c"
},
scroll: {
track: "#f9fafb",
trackSec: "#27293D",
thumb: "#d8d8d8",
thumbSec: "#fefefe"
},
filter: {
primary: "#d8d8d8ab",
secondary: "#29292ce9"
},
selected: {
primary: "#d8d8d8d4",
secondary: "#19191b",
hover: "#d8d8d8ab",
hoverSec: "#29292ce9"
}
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
urbanist: ['Urbanist', 'sans-serif']
},
fontSize: {
nl: ['56px', '64px']
},
screens: {
'2xs': '200px',
'1xs': '350px',
'1xl': '1400px',
'3xl': '2000px'
}
}
},
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`composables/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`,
`node_modules/tailvue/dist/tailvue.es.js`,
],
};