44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
display: ['Plus Jakarta Sans', 'sans-serif'],
|
|
sans: ['Plus Jakarta Sans', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
accent: {
|
|
DEFAULT: '#0CC9A8',
|
|
green: '#6EE8A8',
|
|
muted: 'rgba(12, 201, 168, 0.15)',
|
|
},
|
|
ink: {
|
|
DEFAULT: '#060B09',
|
|
surface: '#0C1510',
|
|
border: '#162A20',
|
|
},
|
|
snow: {
|
|
DEFAULT: '#F0FAF5',
|
|
muted: '#4A6E60',
|
|
dim: '#1E3A2C',
|
|
},
|
|
},
|
|
animation: {
|
|
'fade-up': 'fadeUp 0.7s ease forwards',
|
|
'glow-pulse': 'glowPulse 4s ease-in-out infinite',
|
|
},
|
|
keyframes: {
|
|
fadeUp: {
|
|
'0%': { opacity: '0', transform: 'translateY(28px)' },
|
|
'100%': { opacity: '1', transform: 'translateY(0)' },
|
|
},
|
|
glowPulse: {
|
|
'0%, 100%': { opacity: '0.15' },
|
|
'50%': { opacity: '0.25' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|