Tailwindcofig file but needs to be cleaned

This commit is contained in:
job 2023-03-06 15:08:29 +01:00
parent 9564294d5a
commit 99923d2d6e
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.rs",
"./static/**/*.rs",
"./static/**/*.html"
],
theme: {
screens : {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px'
},
variants: {
display: ["group-hover"]
},
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
'intermate-yellow': '#f8a90c',
'intermate-yellow-hover': '#b87e08',
'intermate-shadow' : 'hsla(0, 0%, 75%, 0.5)',
},
backgroundImage: {
'ballen' : "url('.perseus/static/balls.svg')"
}
},
},
plugins: [require("daisyui")],
daisyui: {
darkTheme: "light",
themes: ["light", "dark", "night",
{
intermate: {
primary: "#a991f7",
secondary: "#f6d860",
accent: "#37cdbe",
neutral: "#3d4451",
"base-100": "#fccf47",
"intermate-yellow": "#f8a90c",
},
},
],
},
}