Initial commit
This commit is contained in:
27
meal-plan-frontend/tailwind.config.js
Normal file
27
meal-plan-frontend/tailwind.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
||||
darkMode: "class",
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
50: "#eefaf3",
|
||||
100: "#d6f1e0",
|
||||
200: "#b0e3c6",
|
||||
300: "#7dcda4",
|
||||
400: "#47b07e",
|
||||
500: "#22935f",
|
||||
600: "#16774c",
|
||||
700: "#125f3f",
|
||||
800: "#114c34",
|
||||
900: "#0e3e2c",
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Reference in New Issue
Block a user