27 lines
767 B
JavaScript
27 lines
767 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
boxShadow: {
|
|
'glow': '0 0 0.5vw 0.1vw rgba(255, 255, 255, 0.3), 0 0 1vw 0.5vw rgba(255, 255, 255, 0.1)',
|
|
},
|
|
colors: {
|
|
ieee: {
|
|
yellow: "#F3C135",
|
|
black: "#0A0E1A",
|
|
"blue-100": "#88BFEC",
|
|
"blue-300": "#233363",
|
|
},
|
|
|
|
// Project Page Card colors
|
|
project_card_bg: "#0d1324",
|
|
},
|
|
backgroundImage: {
|
|
"gradient-radial":
|
|
"radial-gradient(circle at 0% 0%, var(--tw-gradient-stops))",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-motion"), require("tailwindcss-animated")],
|
|
};
|