-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
34 lines (33 loc) · 983 Bytes
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
"dark-layer-1": "rgb(40,40,40)",
"dark-layer-2": "rgb(26,26,26)",
"dark-label-2": "rgba(239, 241, 246, 0.75)",
"dark-divider-border-2": "rgb(61, 61, 61)",
"dark-fill-2": "hsla(0,0%,100%,.14)",
"dark-fill-3": "hsla(0,0%,100%,.1)",
"dark-gray-6": "rgb(138, 138, 138)",
"dark-gray-7": "rgb(179, 179, 179)",
"gray-8": "rgb(38, 38, 38)",
"dark-gray-8": "rgb(219, 219, 219)",
"brand-orange": "rgb(255 161 22)",
"brand-orange-s": "rgb(193, 122, 15)",
"dark-yellow": "rgb(255 192 30)",
"dark-pink": "rgb(255 55 95)",
olive: "rgb(0, 184, 163)",
"dark-green-s": "rgb(44 187 93)",
"dark-blue-s": "rgb(10 132 255)",
},
},
},
plugins: [],
}
export default config