-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (30 loc) · 906 Bytes
/
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
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: {
colors: {
'like-yellow': '#e3fbae',
'near-black': '#14141a',
'just-gray': '#282834',
'like-yellow-light': 'rgba(227, 251, 174, 0.96)',
'shadow-gray': 'rgba(40, 40, 52, 0.28)',
'shadow-gray-light': 'rgba(40, 40, 52, 0.12)',
'shadow-gray-dark': 'rgba(40, 40, 52, 0.45)',
'subtle-shadow-gray': 'rgba(40, 40, 52, 0.4)',
},
fontFamily: {
'goia-display': ['goia-display', 'sans-serif'],
'goia': ['goia', 'sans-serif'],
'goia-medium': ['goia-medium', 'sans-serif'],
},
},
},
darkMode: "class",
plugins: [nextui()],
}