mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
16 lines
836 B
CSS
16 lines
836 B
CSS
/* Base variables referenced by the token sheets and component CSS but defined
|
|
* upstream (deepsuite theme/global.css) — supplied here so the composite
|
|
* --dsw-font-* variables resolve and motion rides the upstream curve. Code
|
|
* font stack deliberately omits a bare `monospace` tail (Windows CJK falls
|
|
* back to SimSun otherwise). */
|
|
:root {
|
|
--dsw-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
|
|
'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
--ds-font-family-code: 'SF Mono', 'JetBrains Mono', 'Fira Code', Consolas,
|
|
'Liberation Mono', Menlo, Courier, 'PingFang SC', 'Microsoft YaHei';
|
|
--ds-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
--ds-transition-duration: 0.2s;
|
|
--ds-transition-duration-fast: 0.1s;
|
|
--ds-transition-duration-slow: 0.3s;
|
|
}
|