deotalandAi/packages/ui/src/style.css

19 lines
435 B
CSS

/* Deotaland UI 组件库全局样式 */
/* CSS 变量定义 */
:root {
--dt-primary-color: #6B46C1;
--dt-secondary-color: #A78BFA;
--dt-text-color: #1F2937;
--dt-bg-color: #F3F4F6;
--dt-border-radius: 8px;
--dt-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 暗色主题变量 */
html.dark {
--dt-primary-color: #A78BFA;
--dt-secondary-color: #6B46C1;
--dt-text-color: #F3F4F6;
--dt-bg-color: #1F2937;
}