-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
46 lines (43 loc) · 1.15 KB
/
tailwind.config.cjs
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
/* eslint-disable @typescript-eslint/no-var-requires */
//it is what it is
const daisyui = require("daisyui");
const typography = require("@tailwindcss/typography");
const wavebreakerBrandColor = "#009EFF";
/** @type {import('tailwindcss').Config}*/
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
extend: {}
},
daisyui: {
themes: [{
dark: {
//Based on the VSCode Moonlight II theme.
...require("daisyui/src/theming/themes")["[data-theme=dark]"],
primary: wavebreakerBrandColor,
neutral: "#212337",
"base-100": "#1E2030",
"base-200": "#191A2A",
"base-300": "#131421",
"base-content": "#C8D3F5",
"warning": "#FFC777",
"error": "#FF5370"
},
},
{
light: {
...require("daisyui/src/theming/themes")["[data-theme=light]"],
primary: wavebreakerBrandColor,
"primary-content": "#FFFFFF",
neutral: "#F5F7FA",
"base-content": "#000000"
},
},
],
},
plugins: [typography, daisyui]
};
module.exports = config;