diff --git a/src/themes/common/index.css b/src/themes/common/index.css new file mode 100644 index 00000000..29980abf --- /dev/null +++ b/src/themes/common/index.css @@ -0,0 +1,6 @@ +/** + * @file themes common index.css + * @description 主题配置-公共样式 + * @author BTMuli + * @since Alpha v0.1.3 + */ diff --git a/src/themes/dark/index.css b/src/themes/dark/index.css new file mode 100644 index 00000000..3c473ac8 --- /dev/null +++ b/src/themes/dark/index.css @@ -0,0 +1,9 @@ +/** + * @file themes dark index.css + * @description 主题配置-暗色主题 + * @author BTMuli + * @since Alpha v0.1.3 + */ + +/* 通用样式 */ +@import "./common/index.css"; diff --git a/src/themes/light/index.css b/src/themes/light/index.css new file mode 100644 index 00000000..be3e5402 --- /dev/null +++ b/src/themes/light/index.css @@ -0,0 +1,9 @@ +/** + * @file themes light index.css + * @description 主题配置-亮色主题 + * @author BTMuli + * @since Alpha v0.1.3 + */ + +/* 通用样式 */ +@import "./common/index.css"; \ No newline at end of file