Initial commit
This commit is contained in:
commit
b5a0686832
27 changed files with 4560 additions and 0 deletions
44
tailwind.config.mjs
Normal file
44
tailwind.config.mjs
Normal file
|
@ -0,0 +1,44 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: "#22d3ee",
|
||||
secondary: "#0891b2",
|
||||
accent: "#16a34a",
|
||||
neutral: "#0a0a0a",
|
||||
info: "#3abff8",
|
||||
success: "#36d399",
|
||||
warning: "#fbbd23",
|
||||
error: "#f87272",
|
||||
bckgd: "#050505",
|
||||
bckg: "#0a0a0a",
|
||||
bckgl: "#242424",
|
||||
bckg2l: "#3d3d3d",
|
||||
}
|
||||
},
|
||||
},
|
||||
daisyui: {
|
||||
themes: [
|
||||
{
|
||||
theme: {
|
||||
primary: "#22d3ee",
|
||||
secondary: "#0891b2",
|
||||
accent: "#16a34a",
|
||||
neutral: "#0a0a0a",
|
||||
"base-100": "#0a0a0a",
|
||||
info: "#3abff8",
|
||||
success: "#36d399",
|
||||
warning: "#fbbd23",
|
||||
error: "#f87272",
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/forms'),
|
||||
require('@tailwindcss/aspect-ratio'),
|
||||
require('daisyui')
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue