-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (42 loc) · 996 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: 'class',
theme: {
extend: {
colors: {
pink: "#FFDDE6",
blue: "#D9F1FF",
white: '#F9FAFB',
silver: '#D1D5DB',
zinc: {
darkZ: '#4B5563',
midZ: '#6B7280',
lightZ: '#E5E7EB',
dark: {
DEFAULT: '#1F2937',
100: '#111827',
200: '#030712'
}
},
dark: {
blue: "#2997FF",
gray: {
DEFAULT: "#86868b",
100: "#94928d",
200: "#afafaf",
300: "#42424570",
},
zinc: "#101010",
},
},
},
variants: {
extend: {
textAlign: ['rtl'],
flexDirection: ['rtl']
}
}
},
plugins: [require('tailwindcss-rtl')],
};