mirror of
https://github.com/StepanovPlaton/jelly_belly_wiki.git
synced 2026-04-03 12:20:41 +04:00
09-07
This commit is contained in:
@@ -5,6 +5,7 @@ const config: Config = {
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
@@ -13,6 +14,37 @@ const config: Config = {
|
||||
"gradient-conic":
|
||||
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
||||
},
|
||||
colors: {
|
||||
bg0: "var(--color-bg0)",
|
||||
bg1: "var(--color-bg1)",
|
||||
bg4: "var(--color-bg4)",
|
||||
fg0: "var(--color-fg0)",
|
||||
fg1: "var(--color-fg1)",
|
||||
fg4: "var(--color-fg4)",
|
||||
ac0: "var(--color-ac0)",
|
||||
ac1: "var(--color-ac1)",
|
||||
ac2: "var(--color-ac2)",
|
||||
err: "var(--color-err)",
|
||||
},
|
||||
animation: {
|
||||
fadeIn: "fadeIn 0.25s ease-in-out",
|
||||
fadeOut: "fadeOut 0.25s ease-in-out",
|
||||
},
|
||||
keyframes: () => ({
|
||||
fadeIn: {
|
||||
"0%": { opacity: "0" },
|
||||
"100%": { opacity: "1" },
|
||||
},
|
||||
fadeOut: {
|
||||
"0%": { opacity: "1" },
|
||||
"100%": { opacity: "0" },
|
||||
},
|
||||
}),
|
||||
},
|
||||
screens: {
|
||||
tb: "640px",
|
||||
lp: "1024px",
|
||||
dsk: "1280px",
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
|
||||
Reference in New Issue
Block a user