cloud-sre-arbiter / frontend /tailwind.config.js
Escanor925's picture
feat: complete v2 React UI rebuild and Hugging Face integration
734561b
raw
history blame contribute delete
294 Bytes
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
slate: {
950: '#020617',
925: '#0a1223',
},
},
},
},
plugins: [],
}