-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
38 lines (36 loc) · 966 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
"./node_modules/flowbite/**/*.js",
],
theme: {
extend: {},
colors: {
backgroundMain: '#211148',
backgroundSub: '#0F083B',
textMain: '#f5f5f5',
hoverContentbackground: '#f0f0f0',
visualizationMenuTrigger: '#ededed',
whitemain: '#ffffff',
darkmain: '#000000',
triggerOrange: '#FF8223',
colorTriggerBorder: '#999999',
colorBorderAccordion: '#545454',
badgeblue: '#553bc1',
badgegray: '#999999',
badgered: '#ff0808',
badgegreen: '#739f0f',
badgepurple: '#55297f',
badgeyellow: '#bd6c0f',
accordioncontent: '#bcbcbc',
textContentcard: '#d7d7d7',
}
},
plugins: [
require('flowbite/plugin')
],
}
export default config