sql-agent-openenv / frontend /tailwind.config.js
ar9avg's picture
Initial submission: SQL Agent OpenEnv for Meta+HF hackathon
3c665d2
raw
history blame contribute delete
430 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'bg-primary': '#08080d',
'bg-secondary': '#09090f',
'bg-card': '#0e0e16',
},
fontFamily: {
mono: ['ui-monospace', '"SF Mono"', 'Consolas', '"Liberation Mono"', 'monospace'],
},
},
},
plugins: [],
}