Initial commit
This commit is contained in:
28
frontend/tailwind.config.cjs
Normal file
28
frontend/tailwind.config.cjs
Normal file
@@ -0,0 +1,28 @@
|
||||
/** @type {import('tailwindcss').Config}*/
|
||||
const config = {
|
||||
darkMode: 'class',
|
||||
content: ["./src/**/*.{html,js,svelte,ts}", './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'],
|
||||
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#f7fee7',
|
||||
100: '#ecfccb',
|
||||
200: '#d9f99d',
|
||||
300: '#bef264',
|
||||
400: '#a3e635',
|
||||
500: '#84cc16',
|
||||
600: '#65a30d',
|
||||
700: '#4d7c0f',
|
||||
800: '#3f6212',
|
||||
900: '#365314'
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
Reference in New Issue
Block a user