forked from weaviate/Verba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
80 lines (77 loc) · 2.18 KB
/
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
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
import type { Config } from "tailwindcss";
const colors = require('tailwindcss/colors')
const config: Config = {
purge: {
options: {
safelist: [
'bg-yellow-300',
'bg-gray-300',
'bg-gray-400',
'bg-zinc-300',
'bg-zinc-400',
'bg-red-300',
'bg-green-300',
'bg-cyan-300',
'bg-fuchsia-300',
'bg-yellow-400',
'bg-green-400',
'bg-cyan-400',
'bg-fuchsia-400',
'bg-red-400',
'bg-indigo-400'
// ... any other dynamically constructed classes
],
},
},
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: '100px',
md: '800px',
lg: '1330px',
full: '1700px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
green: colors.green,
blue: colors.blue,
yellow: colors.yellow,
red: colors.red
},
extend: {
colors: {
"bg-verba": "var(--bg-verba, #FEF7F7)",
"bg-alt-verba": "var(--bg-alt-verba, #FFFFFF)",
"button-verba": "var(--button-verba, #EFEFEF)",
"button-hover-verba": "var(--button-hover-verba, #DCDCDC)",
"primary-verba": "var(--primary-verba, #FDFF91)",
"secondary-verba": "var(--secondary-verba, #90FFA8)",
"warning-verba": "var(--warning-verba, #FF8399)",
"text-verba": "var(--text-verba, #161616)",
"text-alt-verba": "var(--text-alt-verba, #8E8E8E)",
"bg-console-verba": "var(--bg-console-verba, #3F3E40)",
"text-console-verba": "var(--text-console-verba, #FFFFFF)"
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [require("daisyui"), require('@tailwindcss/typography')],
daisyui: {
themes: ["light", "dark"],
},
};
export default config;