Files
Linking-Tool/tailwind.config.js

26 lines
641 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
'bg-primary': '#0a0a0a',
'bg-secondary': '#171717',
'text-primary': '#fafafa',
'text-secondary': '#a3a3a3',
'accent-red': '#dc2626',
'accent-red-dark': '#991b1b',
'accent-red-light': '#ef4444',
'border-color': '#262626',
},
fontFamily: {
sans: ['Nunito', 'Inter', 'Segoe UI', 'system-ui', '-apple-system', 'sans-serif'],
},
screens: {
'mobile-landscape': { raw: '(max-width: 767px) and (orientation: landscape)' },
},
},
},
plugins: [],
};