/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
display: ['Raleway', 'sans-serif'],
},
colors: {
tiqa: {
50: '#f5f0f7',
100: '#e8dced',
200: '#d1b9db',
300: '#b08dc0',
400: '#866396',
500: '#6b2d8b',
600: '#4b1862',
700: '#3a1055',
800: '#2a0b3d',
900: '#1a0628',
plugins: [require("@tailwindcss/typography")],
};