forked from GDGoCINHA/24-2_GDGoC_Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (35 loc) · 800 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (35 loc) · 800 Bytes
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
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
"./node_modules/@heroui/theme/dist/components/scroll-shadow.js"
],
theme: {
extend: {
colors: {
black: "#1E1E1E",
white: "#F0F0F0",
red: {
DEFAULT: "#EA4335",
400: "#4F1C17",
},
blue: {
DEFAULT: "#4285F4",
400: "#1E3252",
},
green: {
DEFAULT: "#34A853",
400: "#143D1F",
},
yellow: {
DEFAULT: "#F9AB00",
400: "#493812",
},
},
},
},
darkMode: "class",
plugins: [nextui()],
};