-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
2,204 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,7 @@ | |
backup | ||
|
||
# Node | ||
node_modules | ||
node_modules | ||
|
||
# Styles | ||
styles/**/*.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,3 @@ | ||
/* | ||
* Copyright (c) 2023, Terwer . All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Terwer designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Terwer in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Terwer, Shenzhen, Guangdong, China, youweics@163.com | ||
* or visit www.terwer.space if you need additional information or have any | ||
* questions. | ||
*/ | ||
body | ||
background red | ||
font-size 12px | ||
|
||
// 思源笔记启动会自动加载此文件 | ||
@import "../../styles/common/vars/vars-zhi" | ||
@import "../../styles/theme/zhi-theme" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
``` | ||
https://morty.tw/articles/javascript/nuxt3-eslint-prettier-configuration | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
https://stylus.github.io/stylelint-stylus/rules/no-at-require.html | ||
|
||
# stylelint配合插件在IDEA上检测Stylus语法 | ||
|
||
先安装插件 | ||
|
||
```bash | ||
pnpm add stylelint stylelint-config-standard stylelint-stylus stylus -D | ||
``` | ||
|
||
然后再IDEA开启 | ||
|
||
[https://www.jetbrains.com/help/idea/using-stylelint-code-quality-tool.html#ws_stylelint_configure](https://www.jetbrains.com/help/idea/using-stylelint-code-quality-tool.html#ws_stylelint_configure) | ||
|
||
`.stylelintrc.json` | ||
|
||
```json | ||
{ | ||
"extends": ["stylelint-config-standard", "stylelint-stylus/standard"], | ||
"rules": { | ||
"import-notation": "string", | ||
"string-quotes": "double", | ||
"selector-combinator-space-after": "always", | ||
"value-list-comma-space-before": "never", | ||
"value-list-comma-space-after": "always", | ||
"stylus/declaration-colon": "never", | ||
"stylus/pythonic": "always", | ||
"stylus/selector-list-comma": "never", | ||
"stylus/semicolon": "never", | ||
"stylus/single-line-comment": "always" | ||
} | ||
} | ||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// -------------------------------------------------颜色定义-暗黑模式--------------------------------------------------- | ||
html[data-theme-mode="dark"] | ||
--zhi-body-bg _body-bg-dark | ||
--zhi-main-bg _main-bg-dark | ||
--zhi-sidebar-bg _sidebar-bg-dark | ||
// --zhi-blur-bg _blur-bg-dark | ||
// --zhi-custom-block-bg _custom-block-bg-dark | ||
--zhi-primary-color _primary-color-dark | ||
--zhi-text-color _text-color-dark | ||
// --zhi-text-lighten-color _text-lighten-color-dark | ||
--zhi-border-color _border-color-dark | ||
// --zhi-code-bg _code-bg-dark | ||
// --zhi-code-color _code-color-dark | ||
--zhi-list-hover _list-hover-dark |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// -------------------------------------------------颜色定义-阅读模式--------------------------------------------------- | ||
html[data-theme-mode="green"] | ||
--zhi-body-bg _body-bg-green | ||
--zhi-main-bg _main-bg-green | ||
--zhi-sidebar-bg _sidebar-bg-green | ||
// --zhi-blur-bg _blur-bg-green | ||
// --zhi-custom-block-bg _custom-block-bg-green | ||
--zhi-primary-color _primary-color-green | ||
--zhi-text-color _text-color-green | ||
// --zhi-text-lighten-color: _text-lighten-color-green | ||
--zhi-border-color _border-color-green | ||
// --zhi-code-bg _code-bg-green | ||
// --zhi-code-color _code-color-green | ||
--zhi-list-hover _list-hover-green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// -------------------------------------------------颜色定义-浅色模式--------------------------------------------------- | ||
html[data-theme-mode="light"] | ||
--zhi-body-bg _body-bg-light | ||
--zhi-main-bg _main-bg-light | ||
--zhi-sidebar-bg _sidebar-bg-light | ||
// --zhi-blur-bg _blur-bg-light | ||
// --zhi-custom-block-bg _custom-block-bg-light | ||
--zhi-primary-color _primary-color-light | ||
--zhi-text-color _text-color-light | ||
// --zhi-text-lighten-color _text-lighten-color-light | ||
--zhi-border-color _border-color-light | ||
// --zhi-code-bg _code-bg-light | ||
// --zhi-code-color _code-color-light | ||
--zhi-list-hover _list-hover-light |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
@import "../fonts" | ||
@import "basic-light" | ||
@import "basic-dark" | ||
@import "basic-green" | ||
|
||
// 基础样式 | ||
:root | ||
--zhi-font-family _font-family-mono | ||
--zhi-font-family-code _font-family-mono | ||
--zhi-border-radius-round _border-radius-round | ||
|
||
// 主色 | ||
--b3-theme-primary var(--zhi-primary-color) | ||
// --b3-theme-primary-light rgba(53, 115, 240, 0.72) | ||
// --b3-theme-primary-lighter rgba(53, 115, 240, 0.48) | ||
// --b3-theme-primary-lightest rgba(53, 115, 240, 0.24) | ||
// --b3-theme-secondary #f3a92f | ||
--b3-theme-background var(--zhi-main-bg) | ||
// --b3-theme-background-light #353637 | ||
--b3-theme-background-light var(--zhi-sidebar-bg) | ||
--b3-theme-surface var(--zhi-body-bg) | ||
// --b3-theme-surface-light rgba(41, 42, 45, .86) | ||
// --b3-theme-surface-lighter rgba(230, 230, 230, .06) | ||
// --b3-theme-error #d23f31 | ||
|
||
// 文字颜色 | ||
// --b3-theme-on-primary #fff | ||
// --b3-theme-on-secondary #fff | ||
--b3-theme-on-background var(--zhi-text-color) | ||
// --b3-theme-on-surface #9aa0a6 | ||
// --b3-theme-on-surface-light rgba(154, 160, 166, .68) | ||
// --b3-theme-on-error #fff | ||
|
||
// 字体 | ||
--b3-font-family var(--zhi-font-family) | ||
--b3-font-family-code var(--zhi-font-family-code) | ||
--b3-font-family-graph var(--zhi-font-family) | ||
--b3-font-family-emoji var(--zhi-font-family) | ||
--b3-font-family-math var(--zhi-font-family) | ||
|
||
// 顶部工具栏 | ||
// --b3-toolbar-background #2b2d30 | ||
// --b3-toolbar-blur-background #373a41 | ||
// --b3-toolbar-color #ced0d6 | ||
// --b3-toolbar-hover #383a42 | ||
|
||
// 线条 | ||
--b3-border-color var(--zhi-border-color) | ||
|
||
// 滚动条 | ||
// --b3-scroll-color rgba(230, 230, 230, .2) | ||
|
||
// /* 列表 */ | ||
--b3-list-hover var(--zhi-list-hover) | ||
// --b3-list-icon-hover rgba(201, 209, 217, .1) | ||
|
||
// 菜单 | ||
--b3-menu-background var(--zhi-main-bg) | ||
|
||
// 提示 | ||
// --b3-tooltips-color rgba(70, 72, 76, .86) | ||
|
||
// 遮罩 | ||
// --b3-mask-background rgba(0, 0, 0, 0.78) | ||
|
||
// 卡片背景 | ||
// --b3-card-error-color rgb(243, 153, 147) | ||
// --b3-card-error-background #cc352d3d | ||
// --b3-card-warning-color rgb(255, 213, 153) | ||
// --b3-card-warning-background #be8b585d | ||
// --b3-card-info-color rgb(166, 213, 250) | ||
// --b3-card-info-background rgba(0, 153, 255, 0.288) | ||
// --b3-card-success-color rgb(183, 223, 185) | ||
// --b3-card-success-background #85d0a34d | ||
|
||
// 自定义文字 | ||
// --b3-font-color1 var(--b3-card-error-color) | ||
// --b3-font-color2 var(--b3-card-warning-color) | ||
// --b3-font-color3 var(--b3-card-info-color) | ||
// --b3-font-color4 var(--b3-card-success-color) | ||
// --b3-font-color5 var(--b3-theme-on-surface) | ||
// --b3-font-color6 var(--b3-theme-primary) | ||
// --b3-font-color7 var(--b3-theme-secondary) | ||
// --b3-font-color8 var(--b3-theme-error) | ||
// --b3-font-color9 #f5539e | ||
// --b3-font-color10 #bc67bc | ||
// --b3-font-color11 #65b84d | ||
// --b3-font-color12 #f5822e | ||
// --b3-font-color13 var(--b3-theme-background) | ||
// --b3-font-background1 var(--b3-card-error-background) | ||
// --b3-font-background2 var(--b3-card-warning-background) | ||
// --b3-font-background3 var(--b3-card-info-background) | ||
// --b3-font-background4 var(--b3-card-success-background) | ||
// --b3-font-background5 #4c5257; | ||
// --b3-font-background6 #0c3d88; | ||
// --b3-font-background7 #593905; | ||
// --b3-font-background8 #541812; | ||
// --b3-font-background9 #6a0634; | ||
// --b3-font-background10 #6b2f6b; | ||
// --b3-font-background11 #376629; | ||
// --b3-font-background12 #803a06; | ||
// --b3-font-background13 var(--b3-theme-on-background) | ||
|
||
// 动画效果 | ||
// --b3-transition all .2s cubic-bezier(0, 0, .2, 1) 0ms | ||
// --b3-width-transition width .2s cubic-bezier(0, 0, .2, 1) 0ms | ||
|
||
// 阴影 | ||
// --b3-point-shadow 0 3px 6px #010409 | ||
// --b3-dialog-shadow 0 8px 24px #010409 | ||
|
||
// 图表颜色 | ||
// --b3-graph-p-point #076f7e | ||
// --b3-graph-heading-point #8957e5 | ||
// --b3-graph-math-point #80FFA5 | ||
// --b3-graph-code-point #00DDFF | ||
// --b3-graph-table-point #37A2FF | ||
// --b3-graph-list-point #FF0087 | ||
// --b3-graph-todo-point #FFBF00 | ||
// --b3-graph-olist-point #b3005f | ||
// --b3-graph-listitem-point #f65b00 | ||
// --b3-graph-bq-point #8d48e3 | ||
// --b3-graph-super-point #dd79ff | ||
// --b3-graph-doc-point #e8eaed | ||
// --b3-graph-tag-point #dbf32f | ||
// --b3-graph-asset-point #05c091 | ||
// --b3-graph-line #9aa0a6 | ||
// --b3-graph-ref-line #d23f31 | ||
// --b3-graph-tag-line #5f6b06 | ||
// --b3-graph-tag-tag-line #dbf32f | ||
// --b3-graph-asset-line #037457 | ||
// --b3-graph-hl-point #f3a92f | ||
// --b3-graph-hl-line #4285f4 | ||
|
||
// 编辑器搜索颜色 | ||
// --b3-protyle-search-background #32593c | ||
// --b3-protyle-search-border-color #486a51 | ||
// --b3-protyle-search-current-background #204282 | ||
|
||
// 代码片段背景 | ||
// --b3-protyle-code-background rgba(240, 246, 252, .15) | ||
// --b3-protyle-code-linenumber-hl #26364a | ||
|
||
// 所见即所得行内元素颜色 | ||
// --b3-protyle-inline-strong-color #e8eaed | ||
// --b3-protyle-inline-em-color #e8eaed | ||
// --b3-protyle-inline-s-color #e8eaed | ||
// --b3-protyle-inline-link-color #8ab4f8 | ||
// --b3-protyle-inline-mark-background rgb(50, 89, 61) | ||
// --b3-protyle-inline-mark-color #e8eaed | ||
// --b3-protyle-inline-tag-color #9aa0a6 | ||
// --b3-protyle-inline-blockref-color #8957e5 | ||
// --b3-protyle-inline-fileref-color var(--b3-theme-secondary) | ||
|
||
// --b3-pdf-selection #779170 | ||
// --b3-pdf-sidebar-width 200px | ||
// --b3-pdf-offset 0 | ||
// --b3-pdf-background1 var(--b3-theme-error) | ||
// --b3-pdf-background2 #f5822e | ||
// --b3-pdf-background3 var(--b3-theme-secondary) | ||
// --b3-pdf-background4 #65b84d | ||
// --b3-pdf-background5 #f5539e | ||
// --b3-pdf-background6 var(--b3-theme-primary) | ||
// --b3-pdf-background7 #944194 | ||
// --b3-pdf-dark #212224 | ||
|
||
|
||
// 整体背景、字体颜色 | ||
body | ||
font-size _font-size-normal | ||
margin _padding-zero | ||
padding _margin-zero | ||
color var(--zhi-text-color) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// 字体定义 | ||
@import "webfont" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "./font" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// 网页字体 | ||
@import "lxgw" | ||
@import "opensans" |
Oops, something went wrong.