Color Codes
tailwind.config.js:
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
primary: "#B1B493",
secondary: "#D3D3D4",
gray: "#9F9F9F",
white: "#fff",
black: "#000",
shadoblack: "#323232",
},
extend: {},
},
plugins: [],
};
0 Comments