-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
40 lines (38 loc) · 1.1 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
import { nextui } from '@nextui-org/react';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
extend: {
colors: {
acmdark: "rgb(var(--rgb-acmdark) / <alpha-value>)",
primary: "rgb(var(--rgb-primary) / <alpha-value>)",
secondary: "rgb(var(--rgb-secondary) / <alpha-value>)",
surface: {
"000": "rgb(var(--rgb-surface-000) / <alpha-value>)",
"050": "rgb(var(--rgb-surface-050) / <alpha-value>)",
"100": "rgb(var(--rgb-surface-100) / <alpha-value>)",
"150": "rgb(var(--rgb-surface-200) / <alpha-value>)",
"200": "rgb(var(--rgb-surface-200) / <alpha-value>)",
"250": "rgb(var(--rgb-surface-200) / <alpha-value>)",
},
},
container: {
center: true,
padding: '1rem',
},
},
},
plugins: [],
darkMode: "class",
plugins: [nextui()],
}