wa-dev-tools/tailwind.config.js

29 lines
611 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./public/**/*.html', './public/**/*.js'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
mono: ['JetBrains Mono', 'monospace'],
sans: ['Manrope', 'sans-serif'],
},
colors: {
surface: {
900: '#060c18',
800: '#091020',
700: '#0d1828',
600: '#162040',
},
accent: {
DEFAULT: '#0054e6',
dim: '#0043b8',
bright: '#6b9fff',
},
danger: '#ef4444',
},
},
},
plugins: [],
};