57 lines
2.4 KiB
TypeScript
57 lines
2.4 KiB
TypeScript
/**
|
|
* ╔══════════════════════════════════════════════════════════════════╗
|
|
* ║ ║
|
|
* ║ +-+-+-+-+-+-+-+-+ ║
|
|
* ║ |H|e|x|a|H|o|s|t| ║
|
|
* ║ +-+-+-+-+-+-+-+-+ ║
|
|
* ║ ║
|
|
* ║ © 2026 HexaHost — All Rights Reserved ║
|
|
* ║ ║
|
|
* ║ discord ── https://discord.gg/hexahost ║
|
|
* ║ github ── https://github.com/theoneandonlymace ║
|
|
* ║ ║
|
|
* ╚══════════════════════════════════════════════════════════════════╝
|
|
*/
|
|
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: "var(--background)",
|
|
foreground: "var(--foreground)",
|
|
primary: {
|
|
DEFAULT: "#ff51f9", // HexaHost magenta
|
|
hover: "#c31adf",
|
|
glow: "rgba(255, 81, 249, 0.45)",
|
|
},
|
|
secondary: {
|
|
DEFAULT: "#0d0821", // HexaHost deep purple
|
|
light: "#1a1230",
|
|
},
|
|
accent: {
|
|
DEFAULT: "#a348ff",
|
|
blue: "#3978ff",
|
|
neon: "#00cfff",
|
|
red: "rgba(255, 81, 249, 0.12)",
|
|
glass: "rgba(255, 255, 255, 0.05)",
|
|
}
|
|
},
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
"hexa-primary": "linear-gradient(135deg, #ff51f9 0%, #a348ff 100%)",
|
|
"hexa-neon": "linear-gradient(135deg, #00cfff 0%, #ff51f9 100%)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|