Halfway done
This commit is contained in:
25
tailwind.config.js
Normal file
25
tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import colors from "tailwindcss/colors"
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
secondary: {
|
||||
DEFAULT: colors.neutral[200],
|
||||
hover: colors.neutral[300],
|
||||
border: colors.neutral[400],
|
||||
text: colors.neutral[500],
|
||||
dark: colors.neutral[800],
|
||||
["dark-hover"]: colors.neutral[900]
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user