forked from repohistory/repohistory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
46 lines (45 loc) · 977 Bytes
/
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
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}',
],
safelist: [
'bg-[#62C3F8]',
'bg-[#4F9BC4]',
'bg-[#3A7391]',
'bg-[#264B5E]',
],
theme: {
extend: {
backgroundImage: {
'login': "url('../../public/images/bg2.png')",
},
},
},
darkMode: 'class',
plugins: [
require('tailwind-scrollbar-hide'),
nextui({
themes: {
dark: {
colors: {
default: {
foreground: '#000000',
DEFAULT: '#ffffff',
},
primary: {
foreground: '#000000',
DEFAULT: '#62C3F8',
},
secondary: {
foreground: '#000000',
DEFAULT: '#315c72',
},
},
},
},
}),
],
};