personal-website/frontend/tailwind.config.js
Filipe Medeiros b973949620
not fresh lol
Signed-off-by: Filipe Medeiros <hello@filipesm.eu>
2023-12-03 12:26:00 +01:00

24 lines
501 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: {
50: '#e5fff7',
100: '#b3ffe8',
200: '#80ffd8',
300: '#4dffc9',
400: '#1affb9',
500: '#00e6a0',
600: '#00b37c',
700: '#008059',
800: '#004d35',
900: '#001a12',
},
},
},
},
plugins: [],
}