-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtailwind.config.ts
63 lines (62 loc) · 1.41 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
import { nextui } from "@nextui-org/theme";
import type { Config } from "tailwindcss";
export default {
content: [
"./index.html",
"./ui/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: [
"Rubik",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
screens: {
xs: "475px",
},
backgroundImage: {
radial:
"radial-gradient(at 50% -10%, hsl(183.06deg 43.75% 43.92% / 22%) 5%, hsl(0deg 0% 0% / 45%) 90%)",
"radial-1":
"radial-gradient(at 90% 0%,hsl(183.32deg 43.65% 44.06% / 24%) 5%,hsl(0deg 0% 0% / 0%) 90%)",
},
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
xl: "2rem",
"2xl": "3rem",
},
},
},
plugins: [
nextui({
addCommonColors: true,
defaultTheme: "dark",
defaultExtendTheme: "dark",
themes: {
dark: {
colors: {
primary: "#31797da3",
},
},
},
}),
],
} satisfies Config;