Files
stats/apps/web/tailwind.config.ts
Carl-Gerhard Lindesvärd 206ae54dea gui: work in progress
2023-10-17 21:47:37 +02:00

29 lines
574 B
TypeScript

import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
'chart-0': '',
'chart-1': '',
'chart-2': '',
'chart-3': '',
'chart-4': '',
'chart-5': '',
'chart-6': '',
'chart-7': '',
'chart-8': '',
'chart-9': '',
'chart-10': '',
'chart-11': '',
'chart-12': '',
'chart-13': '',
'chart-14': '',
'chart-15': '',
}
},
},
plugins: [],
} satisfies Config;