mirror of
https://github.com/langgenius/dify.git
synced 2026-05-12 15:58:19 +08:00
23 lines
387 B
CSS
23 lines
387 B
CSS
@import 'tailwindcss';
|
|
|
|
@plugin '../src/plugins/icons.ts';
|
|
|
|
@source '../src';
|
|
@source '../.storybook';
|
|
|
|
@import '../src/styles/styles.css';
|
|
|
|
html {
|
|
color-scheme: light;
|
|
}
|
|
|
|
html[data-theme='dark'] {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
background: var(--color-components-panel-bg);
|
|
color: var(--color-text-primary, #101828);
|
|
font-family: Inter, ui-sans-serif, system-ui, sans-serif;
|
|
}
|