mirror of
https://github.com/langgenius/dify.git
synced 2026-09-08 11:04:27 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
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;
|
|
}
|