-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.57 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
// tailwind.config.js
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
'sans': ['Poppins', 'sans-serif'],
},
colors: {
cyan: {
400: '#26C6DA',
500: '#25BCD0',
600: '#22ACBF',
},
smoke: {
100: '#F5F5F5',
200: '#EBEBEB',
800: '#474A48',
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'custom-gradient': 'linear-gradient(to top left, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.1) 25%, transparent 100%)',
},
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
light: {
colors: {
primary: {
DEFAULT: '#26C6DA', // Cyan 400 as primary color
},
// Define a custom gradient property for the theme if needed
gradient: {
from: 'rgba(6, 182, 212, 0.1)', // Start of your custom gradient
via: 'rgba(6, 182, 212, 0.25)', // Mid of your custom gradient
to: 'transparent', // End of your custom gradient
},
},
},
},
}),
],
};