mirror of
https://github.com/ershisan99/next-storybook.git
synced 2025-12-17 20:59:26 +00:00
initial commit
This commit is contained in:
53
tailwind.config.js
Normal file
53
tailwind.config.js
Normal file
@@ -0,0 +1,53 @@
|
||||
/** @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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user