mirror of
https://github.com/SkyLinkHostingLLC/Website.git
synced 2026-02-22 01:42:22 -05:00
25 lines
571 B
TypeScript
25 lines
571 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
darkBlue: "#0f172a",
|
|
yellow: "#facc15",
|
|
lightGray: "#f1f5f9",
|
|
background: "var(--background)",
|
|
foreground: "var(--foreground)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|