asherfalcon.com/tailwind.config.ts
Asher 62e6776585
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m55s
Added docker-compose deploy post
2025-03-02 14:52:56 +00:00

29 lines
586 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
'ashgreen': "#43c48c",
'ashgray': "#232423",
'ashwhite': "#dce3dc"
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
},
plugins: [],
} satisfies Config;