Files
next-storybook/tailwind.config.js
2023-04-04 20:58:26 +02:00

54 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
100: "#73A5FF",
300: "#4C8DFF",
500: "#397DF6",
700: "#2F68CC",
900: "#234E99",
},
success: {
100: "#80FFBF",
300: "#22E584",
500: "#14CC70",
700: "#0F9954",
900: "#0A6638",
},
danger: {
100: "#FF8099",
300: "#F23D61",
500: "#CC1439",
700: "#990F2B",
900: "#660A1D",
},
warning: {
100: "#FFD073",
300: "#E5AC39",
500: "#D99000",
700: "#996600",
900: "#664400",
},
dark: {
100: "#4C4C4C",
300: "#333333",
500: "#171717",
700: "#0D0D0D",
900: "#000000",
},
light: {
100: "#FFFFFF",
300: "#F7FBFF",
500: "#EDF3FA",
700: "#D5DAE0",
900: "#BDC1C7",
},
},
},
},
plugins: [],
};