-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
75 lines (72 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*eslint-disable*/
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
Poppins: ["Poppins", "sans-serif"],
},
},
screens: {
xxs: "300px",
xs: "460px",
sm: "540px",
md: "640px",
lg: "1024px",
xl: "1280px",
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
dark: {
layout: {},
colors: {
foreground: "#000000",
background: "#ffffff",
primary: {
DEFAULT: "#6A65B0",
50: "#F2F0FF",
100: "#E0DFF2",
200: "#BFBDDE",
300: "#9B98CA",
400: "#7D79BA",
500: "#6A65B0",
600: "#605BAC",
700: "#504C97",
800: "#464388",
900: "#3B3979",
},
focus: "#6A65B0",
},
},
light: {
layout: {},
colors: {
primary: {
DEFAULT: "#6A65B0",
50: "#F2F0FF",
100: "#E0DFF2",
200: "#BFBDDE",
300: "#9B98CA",
400: "#7D79BA",
500: "#6A65B0",
600: "#605BAC",
700: "#504C97",
800: "#464388",
900: "#3B3979",
},
focus: "#6A65B0",
},
},
},
}),
],
};