We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3ee03 commit fab4b15Copy full SHA for fab4b15
tailwind.config.js
@@ -2,7 +2,6 @@ import {readFileSync} from 'node:fs';
2
import {parse} from 'css-variables-parser';
3
4
const colors = Object.keys(parse([
5
- readFileSync(new URL('web_src/css/base.css', import.meta.url), 'utf8'),
6
readFileSync(new URL('web_src/css/themes/theme-gitea-light.css', import.meta.url), 'utf8'),
7
readFileSync(new URL('web_src/css/themes/theme-gitea-dark.css', import.meta.url), 'utf8'),
8
].join('\n'), {})).filter((prop) => prop.startsWith('color-')).map((prop) => prop.substring(6));
0 commit comments