-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (52 loc) · 1.17 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
import { nextui } from "@nextui-org/react";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
"100": "#e6e7e9",
"200": "#dadbde",
"300": "#b3b4ba",
"500": "#090e20",
"900": "#070b18",
},
secundary: {
"100": "#effbff",
"200": "#e7f9ff",
"300": "#cef4fe",
"500": "#62dafc",
"900": "#224c58",
},
},
animation: {
rotate: "spin 80s linear infinite",
"rotate-reverse": "spin 80s linear infinite reverse",
},
},
},
keyframes: {
spin: {
from: {
transform: "rotate(0deg)",
},
to: {
transform: "rotate(360deg)",
},
},
},
variants: {
extend: {
transform: ["active"],
},
},
plugins: [require("@tailwindcss/forms"), nextui()],
};