-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
55 lines (53 loc) · 1.11 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
import { nextui } from "@nextui-org/react";
import colors from "tailwindcss/colors";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{jsx,tsx}", "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
padding: {
18: "4.5rem"
},
minHeight: {
18: "4.5rem",
},
fontFamily: {
"inter": ["Inter", "ui-sans-serif"]
},
colors: {
...colors,
purple: "#8284FA",
purpleDark: "#5E60CE",
blueDark: "#1E6F9F",
blue: "#4EA8DE ",
gray: {
100: "#F2F2F2",
200: "#D9D9D9",
300: "#808080",
400: "#333",
500: "#262626",
600: "#1A1A1A",
700: "#0D0D0D",
},
white: "#ffffff",
default: {
100: "#1E6F9F33"
},
danger: "#E25858",
},
},
colors: {},
},
plugins: [nextui({
addCommonColors: true,
themes: {
checkbox: {
colors: {
primary: {
DEFAULT: "#5E60CE"
}
}
}
}
})]
};