update primary color

This commit is contained in:
HorizonCode 2024-01-09 14:48:58 +01:00
parent 310c206367
commit 873aeaf921
1 changed files with 31 additions and 26 deletions

View File

@ -1,41 +1,46 @@
/** @type {import('tailwindcss').Config}*/ /** @type {import('tailwindcss').Config}*/
const config = { const config = {
content: ['./src/**/*.{html,js,svelte,ts}', './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'], content: [
darkMode: 'class', "./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
darkMode: "class",
theme: { theme: {
extend: { extend: {
colors: { colors: {
// flowbite-svelte // flowbite-svelte
primary: { primary: {
50: '#FFF5F2', DEFAULT: "#FA1C74",
100: '#FFF1EE', 50: "#FED0E2",
200: '#FFE4DE', 100: "#FEBCD6",
300: '#FFD5CC', 200: "#FD94BD",
400: '#FFBCAD', 300: "#FC6CA5",
500: '#FE795D', 400: "#FB448C",
600: '#EF562F', 500: "#FA1C74",
700: '#EB4F27', 600: "#D90559",
800: '#CC4522', 700: "#A20442",
900: '#A5371B' 800: "#6B022C",
900: "#340115",
950: "#19010A",
}, },
gray: { gray: {
50: '#F9F9F9', 50: "#F9F9F9",
100: '#ECECEC', 100: "#ECECEC",
200: '#D3D3D3', 200: "#D3D3D3",
300: '#B9B9B9', 300: "#B9B9B9",
400: '#A0A0A0', 400: "#A0A0A0",
500: '#868686', 500: "#868686",
600: '#6D6D6D', 600: "#6D6D6D",
700: '#535353', 700: "#535353",
800: '#393939', 800: "#393939",
900: '#202020', 900: "#202020",
950: '#1A1A1A' 950: "#1A1A1A",
}, },
} },
} },
}, },
plugins: [require('flowbite/plugin')], plugins: [require("flowbite/plugin")],
}; };
module.exports = config; module.exports = config;