-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/components/**/*.{js,vue,ts}",
"./app./layouts/**/*.vue",
"./app./pages/**/*.vue",
"./app./plugins/**/*.{js,ts}",
"./app./nuxt.config.{js,ts}",
"./node_modules/flowbite/**/*.{js,ts}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
},
colors: {
purple: {
dark: "#0D062D",
DEFAULT: "#5030E5",
light: "#F1EEFD",
},
orange: {
dark: "#D58D49",
DEFAULT: "#FFA500",
light: "#F9EEE3",
},
green: {
dark: "#68B266",
DEFAULT: "#8BC48A",
light: "#E6F3EB",
},
blue: {
DEFAULT: "#76A5EA",
},
red: {
DEFAULT: "#D8727D",
light: "#FBF1F2",
},
neutral: {
900: "#0B0C11",
800: "#0D062D",
700: "#111827",
600: "#121217",
DEFAULT: "#787486",
400: "#625F6D",
350: "#DADADA",
300: "#DBDBDB",
200: "#F5F5F5",
100: "#ffffff",
},
},
},
},
plugins: [require("flowbite/plugin")],
};