jekyll-text-theme 1.5.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +41 -153
- data/_data/authors.yml +0 -0
- data/_data/licenses.yml +16 -0
- data/_data/locale.yml +4 -10
- data/_data/navigation.yml +13 -0
- data/_data/variables.yml +22 -6
- data/_includes/analytics-providers/custom.html +0 -0
- data/_includes/analytics-providers/google.html +16 -0
- data/_includes/analytics.html +7 -0
- data/_includes/article-footer/custom.html +1 -0
- data/_includes/article-footer/license.html +24 -0
- data/_includes/article-info.html +90 -0
- data/_includes/aside/toc.html +1 -0
- data/_includes/author-profile.html +50 -0
- data/_includes/comments-providers/custom.html +0 -0
- data/_includes/comments-providers/disqus.html +22 -0
- data/_includes/comments-providers/gitalk.html +32 -0
- data/_includes/comments.html +9 -0
- data/_includes/follow-me.html +84 -0
- data/_includes/footer.html +39 -0
- data/_includes/head.html +54 -0
- data/_includes/header.html +33 -0
- data/_includes/markdown-enhancements.html +32 -0
- data/_includes/{utils → markdown-enhancements}/chart.html +1 -3
- data/_includes/{utils → markdown-enhancements}/mathjax.html +11 -4
- data/_includes/{utils → markdown-enhancements}/mermaid.html +1 -3
- data/_includes/pageview-providers/custom.html +0 -0
- data/_includes/pageview-providers/custom/home.html +0 -0
- data/_includes/pageview-providers/custom/post.html +0 -0
- data/_includes/pageview-providers/leancloud/home.html +35 -0
- data/_includes/pageview-providers/leancloud/leancloud.js +71 -0
- data/_includes/pageview-providers/leancloud/post.html +31 -0
- data/_includes/pageview.html +31 -0
- data/_includes/scripts/archieve.js +238 -0
- data/_includes/scripts/article-list.html +27 -0
- data/_includes/scripts/article.js +24 -0
- data/_includes/scripts/aside/affix.js +26 -0
- data/_includes/scripts/aside/toc.js +37 -0
- data/_includes/scripts/common.js +3 -0
- data/_includes/scripts/home.js +3 -0
- data/_includes/scripts/lib/affix.js +103 -0
- data/_includes/scripts/{utils.html → lib/lazyload.js} +55 -92
- data/_includes/scripts/lib/scroll.js +13 -0
- data/_includes/scripts/lib/throttle.js +28 -0
- data/_includes/scripts/lib/toc.js +106 -0
- data/_includes/scripts/page.js +3 -0
- data/_includes/scripts/sidebar.js +14 -0
- data/_includes/scripts/utils.js +38 -0
- data/_includes/scripts/variables.html +27 -0
- data/_includes/sidebar/toc.html +27 -0
- data/_includes/snippets/assign.html +5 -0
- data/_includes/snippets/get-nav-url.html +3 -2
- data/_includes/snippets/page-title.html +11 -6
- data/_includes/snippets/page-url.html +3 -1
- data/_includes/snippets/to-boolean.html +7 -0
- data/_includes/{icon → svg/icon}/social/behance.svg +0 -0
- data/_includes/{icon → svg/icon}/social/douban.svg +0 -0
- data/_includes/{icon → svg/icon}/social/facebook.svg +0 -0
- data/_includes/{icon → svg/icon}/social/flicker.svg +0 -0
- data/_includes/{icon → svg/icon}/social/github.svg +0 -0
- data/_includes/{icon → svg/icon}/social/googleplus.svg +0 -0
- data/_includes/{icon → svg/icon}/social/linkedin.svg +0 -0
- data/_includes/{icon → svg/icon}/social/mail.svg +0 -0
- data/_includes/{icon → svg/icon}/social/pinterest.svg +0 -0
- data/_includes/{icon → svg/icon}/social/qq.svg +0 -0
- data/_includes/{icon → svg/icon}/social/twitter.svg +0 -0
- data/_includes/{icon → svg/icon}/social/weibo.svg +0 -0
- data/_includes/{icon → svg/icon}/social/weixin.svg +0 -0
- data/_includes/{icon → svg/icon}/social/zhihu.svg +0 -0
- data/_includes/{logo → svg}/logo.svg +1 -1
- data/_includes/tags.html +52 -0
- data/_layouts/404.html +12 -0
- data/_layouts/archive.html +25 -0
- data/_layouts/article.html +78 -0
- data/_layouts/base.html +13 -33
- data/_layouts/home.html +135 -121
- data/_layouts/landing.html +164 -0
- data/_layouts/page.html +157 -9
- data/_sass/additional/_alert.scss +25 -0
- data/_sass/additional/_photo-frame.scss +17 -0
- data/_sass/animate/_fade-in-down.scss +1 -1
- data/_sass/animate/_fade-in.scss +1 -1
- data/_sass/common/_classes.scss +5 -2
- data/_sass/common/_reset.scss +32 -22
- data/_sass/common/_variables.scss +87 -31
- data/_sass/common/classes/_animation.scss +9 -0
- data/_sass/common/classes/_clearfix.scss +8 -0
- data/_sass/common/classes/_grid.scss +48 -0
- data/_sass/common/classes/_horizontal-rules.scss +14 -0
- data/_sass/common/classes/_link.scss +18 -145
- data/_sass/common/classes/_media.scss +1 -2
- data/_sass/common/classes/_overflow.scss +8 -0
- data/_sass/common/classes/_pseudo.scss +26 -0
- data/_sass/common/classes/_shadow.scss +13 -5
- data/_sass/common/classes/_spacing.scss +52 -0
- data/_sass/common/components/_button.scss +179 -47
- data/_sass/common/components/_card.scss +18 -0
- data/_sass/common/components/_menu.scss +43 -0
- data/_sass/common/components/_toc.scss +125 -0
- data/_sass/components/_article.content.scss +37 -45
- data/_sass/components/_article.info.scss +25 -0
- data/_sass/components/_author-profile.scss +43 -0
- data/_sass/components/_follow-me.scss +16 -19
- data/_sass/components/_footer.scss +16 -6
- data/_sass/components/_header.scss +26 -18
- data/_sass/components/_license.scss +1 -25
- data/_sass/components/_main.scss +13 -11
- data/_sass/components/_tags.scss +17 -36
- data/_sass/layout/{_error-404.scss → _404.scss} +2 -2
- data/_sass/layout/_all.scss +72 -63
- data/_sass/layout/_article.scss +44 -0
- data/_sass/layout/_home.scss +61 -52
- data/_sass/layout/_landing.scss +104 -0
- data/_sass/layout/_page.scss +155 -0
- data/_sass/{colors → skins}/_chocolate.scss +17 -6
- data/_sass/skins/_dark.scss +56 -0
- data/_sass/{colors → skins}/_default.scss +16 -5
- data/_sass/{colors → skins}/_forest.scss +16 -5
- data/_sass/{colors → skins}/_ocean.scss +16 -5
- data/_sass/{colors → skins}/_orange.scss +20 -9
- data/assets/android-chrome-192x192.png +0 -0
- data/assets/android-chrome-512x512.png +0 -0
- data/assets/apple-touch-icon.png +0 -0
- data/assets/browserconfig.xml +9 -0
- data/assets/css/main.scss +46 -0
- data/assets/favicon-16x16.png +0 -0
- data/assets/favicon-32x32.png +0 -0
- data/assets/favicon.ico +0 -0
- data/assets/images/logo/logo.svg +1 -1
- data/assets/mstile-144x144.png +0 -0
- data/assets/mstile-150x150.png +0 -0
- data/assets/mstile-310x150.png +0 -0
- data/assets/mstile-310x310.png +0 -0
- data/assets/mstile-70x70.png +0 -0
- data/assets/safari-pinned-tab.svg +38 -0
- data/assets/site.webmanifest +19 -0
- metadata +108 -76
- data/_includes/common-head.html +0 -10
- data/_includes/components/article-data.html +0 -55
- data/_includes/components/follow-me.html +0 -78
- data/_includes/components/footer.html +0 -10
- data/_includes/components/header.html +0 -42
- data/_includes/components/license.html +0 -26
- data/_includes/components/tags.html +0 -52
- data/_includes/head-icons-rel.html +0 -38
- data/_includes/icon/clear.svg +0 -3
- data/_includes/icon/link.svg +0 -1
- data/_includes/icon/menu.svg +0 -3
- data/_includes/icon/next.svg +0 -3
- data/_includes/icon/omit.svg +0 -1
- data/_includes/icon/previous.svg +0 -3
- data/_includes/icon/search.svg +0 -3
- data/_includes/scripts/all.html +0 -244
- data/_includes/scripts/common.html +0 -30
- data/_includes/scripts/data.html +0 -27
- data/_includes/scripts/home.html +0 -26
- data/_includes/scripts/page-post.html +0 -32
- data/_includes/scripts/post.html +0 -183
- data/_includes/utils/comment-disqus.html +0 -19
- data/_includes/utils/comment-gitalk.html +0 -25
- data/_includes/utils/google-analytics.html +0 -11
- data/_layouts/all.html +0 -20
- data/_layouts/error-404.html +0 -9
- data/_layouts/post.html +0 -60
- data/_sass/colors/_dark.scss +0 -45
- data/_sass/common/classes/_shape.scss +0 -19
- data/_sass/common/classes/_space.scss +0 -40
- data/_sass/components/_article.content.extra.scss +0 -41
- data/_sass/components/_article.data.scss +0 -36
- data/_sass/components/_pagination.scss +0 -19
- data/_sass/components/_toc.scss +0 -72
- data/_sass/layout/_default.scss +0 -19
- data/_sass/layout/_post.scss +0 -80
- data/assets/css/blog.scss +0 -41
- data/assets/images/logo/icon-120x120.png +0 -0
- data/assets/images/logo/icon-128x128.png +0 -0
- data/assets/images/logo/icon-150x150.png +0 -0
- data/assets/images/logo/icon-152x152.png +0 -0
- data/assets/images/logo/icon-167x167.png +0 -0
- data/assets/images/logo/icon-16x16.png +0 -0
- data/assets/images/logo/icon-180x180.png +0 -0
- data/assets/images/logo/icon-192x192.png +0 -0
- data/assets/images/logo/icon-310x150.png +0 -0
- data/assets/images/logo/icon-310x310.png +0 -0
- data/assets/images/logo/icon-48x48.png +0 -0
- data/assets/images/logo/icon-70x70.png +0 -0
@@ -0,0 +1,155 @@
|
|
1
|
+
.layout--page {
|
2
|
+
height: 100%;
|
3
|
+
|
4
|
+
.page__main {
|
5
|
+
height: 100%;
|
6
|
+
}
|
7
|
+
&.layout--page--sidebar {
|
8
|
+
.page__main {
|
9
|
+
@include overflow(auto);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
.page__main-inner {
|
14
|
+
position: relative;
|
15
|
+
height: auto !important;
|
16
|
+
height: 100%;
|
17
|
+
min-height: 100%;
|
18
|
+
|
19
|
+
.col-2 {
|
20
|
+
display: none;
|
21
|
+
float: right;
|
22
|
+
& > aside {
|
23
|
+
width: map-get($layout, aside-width);
|
24
|
+
position: absolute;
|
25
|
+
overflow: hidden;
|
26
|
+
}
|
27
|
+
@include media-breakpoint-down(lg) {
|
28
|
+
float: none;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.page__content {
|
34
|
+
margin: 0 auto;
|
35
|
+
padding-bottom: map-get($layout, footer-height);
|
36
|
+
}
|
37
|
+
|
38
|
+
.article__header {
|
39
|
+
margin-top: map-get($spacers, 4);
|
40
|
+
header, h1 {
|
41
|
+
display: inline;
|
42
|
+
}
|
43
|
+
.edit-on-github-button {
|
44
|
+
vertical-align: text-bottom;
|
45
|
+
margin-left: map-get($spacers, 3);
|
46
|
+
@include media-breakpoint-down(md) {
|
47
|
+
display: none;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
.page__comments {
|
53
|
+
padding-bottom: map-get($base, vertical-space-lg);
|
54
|
+
}
|
55
|
+
|
56
|
+
.page__actions {
|
57
|
+
position: absolute;
|
58
|
+
left: 1rem;
|
59
|
+
bottom: 1rem;
|
60
|
+
display: none;
|
61
|
+
z-index: 996;
|
62
|
+
}
|
63
|
+
|
64
|
+
.sidebar-button {
|
65
|
+
@include button-colors($text-color-d, rgba($main-color-3, .75));
|
66
|
+
border: 1px $border-color solid;
|
67
|
+
}
|
68
|
+
|
69
|
+
.page__sidebar {
|
70
|
+
display: block;
|
71
|
+
width: 80%;
|
72
|
+
max-width: map-get($layout, sidebar-width);
|
73
|
+
float: left;
|
74
|
+
height: 100%;
|
75
|
+
background-color: $background-color;
|
76
|
+
z-index: 998;
|
77
|
+
@include split-line(right);
|
78
|
+
@include transition(transform .4s);
|
79
|
+
@include overflow(auto);
|
80
|
+
.sidebar-toc {
|
81
|
+
padding: 1rem 1rem 2rem 2rem;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
.page__mask {
|
86
|
+
background-color: $mask-color;
|
87
|
+
position: absolute;
|
88
|
+
top: 0;
|
89
|
+
left: 0;
|
90
|
+
right: 0;
|
91
|
+
bottom: 0;
|
92
|
+
z-index: 997;
|
93
|
+
display: none;
|
94
|
+
cursor: pointer;
|
95
|
+
}
|
96
|
+
|
97
|
+
.page__aside {
|
98
|
+
.toc-aside {
|
99
|
+
padding: 1rem 0 1rem 3rem;
|
100
|
+
}
|
101
|
+
|
102
|
+
}
|
103
|
+
|
104
|
+
.page__footer {
|
105
|
+
position: absolute;
|
106
|
+
bottom: 0;
|
107
|
+
width: 100%;
|
108
|
+
}
|
109
|
+
|
110
|
+
.has-aside {
|
111
|
+
.page__main-inner{
|
112
|
+
.col-1 {
|
113
|
+
margin-right: map-get($layout, aside-width);
|
114
|
+
@include media-breakpoint-down(lg) {
|
115
|
+
margin-right: 0;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
.col-2 {
|
119
|
+
width: map-get($layout, aside-width);
|
120
|
+
position: relative;
|
121
|
+
display: block;
|
122
|
+
&>aside {
|
123
|
+
&.fixed {
|
124
|
+
position: fixed;
|
125
|
+
z-index: 2;
|
126
|
+
-webkit-font-smoothing: subpixel-antialiased;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
@include media-breakpoint-down(lg) {
|
130
|
+
display: none;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
@include media-breakpoint-down(lg) {
|
137
|
+
.page__sidebar {
|
138
|
+
position: fixed;
|
139
|
+
@include transform(translate(- map-get($layout, sidebar-width), 0));
|
140
|
+
}
|
141
|
+
|
142
|
+
.page__actions {
|
143
|
+
display: block;
|
144
|
+
}
|
145
|
+
|
146
|
+
&.show-sidebar {
|
147
|
+
.page__sidebar {
|
148
|
+
@include transform(translate(0));
|
149
|
+
}
|
150
|
+
.page__mask {
|
151
|
+
display: block;
|
152
|
+
}
|
153
|
+
}
|
154
|
+
}
|
155
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
///
|
2
|
-
//
|
2
|
+
// Skin: Chocolate
|
3
3
|
// Author: Tian Qi
|
4
4
|
// Email: kitian616@outlook.com
|
5
5
|
///
|
@@ -15,24 +15,35 @@ $main-color-3: #7f5543;
|
|
15
15
|
$text-color-3: #fff;
|
16
16
|
|
17
17
|
// background colors
|
18
|
-
$background-color: #
|
18
|
+
$background-color: #efefef;
|
19
19
|
// text colors
|
20
|
-
$text-color-d:
|
21
|
-
$text-color:
|
22
|
-
$text-color-l:
|
20
|
+
$text-color-theme-light-d: rgba(#000, .95);
|
21
|
+
$text-color-theme-light: rgba(#000, .85);
|
22
|
+
$text-color-theme-light-l: rgba(#000, .5);
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: #fff;
|
25
|
+
$text-color-theme-dark: rgba(#fff, .95);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .85);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-light-d;
|
29
|
+
$text-color: $text-color-theme-light;
|
30
|
+
$text-color-l: $text-color-theme-light-l;
|
31
|
+
|
23
32
|
$text-background-color: rgba(#000, .05);
|
24
33
|
|
25
34
|
// border and shadow colors
|
26
35
|
$border-color: mix(#000, $background-color, 20%);
|
27
36
|
$border-color-l: mix(#000, $background-color, 10%);
|
28
|
-
$select-color: rgba($main-color-3, .5);
|
29
37
|
$decorate-color: rgba(#000, .1);
|
38
|
+
$mask-color: rgba(#000, .8);
|
39
|
+
$select-color: rgba($main-color-3, .5);
|
30
40
|
|
31
41
|
// function colors
|
32
42
|
$green: #57c22d;
|
33
43
|
$blue: #2593fc;
|
34
44
|
$yellow: #f8ac30;
|
35
45
|
$red: #f22635;
|
46
|
+
$text-color-function: #fff;
|
36
47
|
|
37
48
|
// logo colors
|
38
49
|
$mail-color: #0072c5;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
///
|
2
|
+
// Skin: Dark
|
3
|
+
// Author: Tian Qi
|
4
|
+
// Email: kitian616@outlook.com
|
5
|
+
///
|
6
|
+
|
7
|
+
// main colors
|
8
|
+
$main-color-1: #FF9500;
|
9
|
+
$text-color-1: rgba(#fff, .8);
|
10
|
+
|
11
|
+
$main-color-2: #FF3B30;
|
12
|
+
$text-color-2: rgba(#fff, .8);
|
13
|
+
|
14
|
+
$main-color-3: #202020;
|
15
|
+
$text-color-3: rgba(#fff, .8);
|
16
|
+
|
17
|
+
// background colors
|
18
|
+
$background-color: #121212;
|
19
|
+
// text colors
|
20
|
+
$text-color-theme-light-d: #000;
|
21
|
+
$text-color-theme-light: #222;
|
22
|
+
$text-color-theme-light-l: #888;
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: rgba(#fff, .8);
|
25
|
+
$text-color-theme-dark: rgba(#fff, .7);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .5);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-dark-d;
|
29
|
+
$text-color: $text-color-theme-dark;
|
30
|
+
$text-color-l: $text-color-theme-dark-l;
|
31
|
+
|
32
|
+
$text-background-color: rgba(#fff, .05);
|
33
|
+
|
34
|
+
// border and shadow colors
|
35
|
+
$border-color: mix(#fff, $background-color, 20%);
|
36
|
+
$border-color-l: mix(#fff, $background-color, 10%);
|
37
|
+
$decorate-color: rgba(#fff, .1);
|
38
|
+
$mask-color: rgba(#fff, .8);
|
39
|
+
$select-color: rgba($main-color-1, .5);
|
40
|
+
|
41
|
+
// function colors
|
42
|
+
$green: #5c7829;
|
43
|
+
$blue: #087099;
|
44
|
+
$yellow: #b7b327;
|
45
|
+
$red: #cc3333;
|
46
|
+
$text-color-function: rgba(#fff, .9);
|
47
|
+
|
48
|
+
// logo colors
|
49
|
+
$mail-color: #0072c5;
|
50
|
+
$weibo-color: #e6162d;
|
51
|
+
$facebook-color: #4267b2;
|
52
|
+
$google-plus-color:#ea4335;
|
53
|
+
$twitter-color: #1da1f2;
|
54
|
+
$douban-color: #42bd56;
|
55
|
+
$github-color: #000;
|
56
|
+
$linkedin-color: #1074af;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
///
|
2
|
-
//
|
2
|
+
// Skin: Default
|
3
3
|
// Author: Tian Qi
|
4
4
|
// Email: kitian616@outlook.com
|
5
5
|
///
|
@@ -17,22 +17,33 @@ $text-color-3: #333;
|
|
17
17
|
// background colors
|
18
18
|
$background-color: #fff;
|
19
19
|
// text colors
|
20
|
-
$text-color-d:
|
21
|
-
$text-color:
|
22
|
-
$text-color-l:
|
20
|
+
$text-color-theme-light-d: #000;
|
21
|
+
$text-color-theme-light: #222;
|
22
|
+
$text-color-theme-light-l: #888;
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: #fff;
|
25
|
+
$text-color-theme-dark: rgba(#fff, .95);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .85);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-light-d;
|
29
|
+
$text-color: $text-color-theme-light;
|
30
|
+
$text-color-l: $text-color-theme-light-l;
|
31
|
+
|
23
32
|
$text-background-color: rgba(#000, .05);
|
24
33
|
|
25
34
|
// border and shadow colors
|
26
35
|
$border-color: mix(#000, $background-color, 20%);
|
27
36
|
$border-color-l: mix(#000, $background-color, 10%);
|
28
|
-
$select-color: rgba($main-color-1, .5);
|
29
37
|
$decorate-color: rgba(#000, .1);
|
38
|
+
$mask-color: rgba(#000, .8);
|
39
|
+
$select-color: rgba($main-color-1, .5);
|
30
40
|
|
31
41
|
// function colors
|
32
42
|
$green: #57c22d;
|
33
43
|
$blue: #2593fc;
|
34
44
|
$yellow: #f8ac30;
|
35
45
|
$red: #f22635;
|
46
|
+
$text-color-function: #fff;
|
36
47
|
|
37
48
|
// logo colors
|
38
49
|
$mail-color: #0072c5;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
///
|
2
|
-
//
|
2
|
+
// Skin: Forest
|
3
3
|
// Author: Tian Qi
|
4
4
|
// Email: kitian616@outlook.com
|
5
5
|
///
|
@@ -17,22 +17,33 @@ $text-color-3: #fff;
|
|
17
17
|
// background colors
|
18
18
|
$background-color: #f8fcfb;
|
19
19
|
// text colors
|
20
|
-
$text-color-d:
|
21
|
-
$text-color:
|
22
|
-
$text-color-l:
|
20
|
+
$text-color-theme-light-d: #325f74;
|
21
|
+
$text-color-theme-light: #3e758f;
|
22
|
+
$text-color-theme-light-l: #619dbb;
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: #fff;
|
25
|
+
$text-color-theme-dark: rgba(#fff, .95);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .85);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-light-d;
|
29
|
+
$text-color: $text-color-theme-light;
|
30
|
+
$text-color-l: $text-color-theme-light-l;
|
31
|
+
|
23
32
|
$text-background-color: rgba(#000, .05);
|
24
33
|
|
25
34
|
// border and shadow colors
|
26
35
|
$border-color: mix(#000, $background-color, 20%);
|
27
36
|
$border-color-l: mix(#000, $background-color, 10%);
|
28
|
-
$select-color: rgba($main-color-1, .5);
|
29
37
|
$decorate-color: rgba(#bb6170, .15);
|
38
|
+
$mask-color: rgba(#000, .8);
|
39
|
+
$select-color: rgba($main-color-1, .5);
|
30
40
|
|
31
41
|
// function colors
|
32
42
|
$green: #57c22d;
|
33
43
|
$blue: #2593fc;
|
34
44
|
$yellow: #f8ac30;
|
35
45
|
$red: #f22635;
|
46
|
+
$text-color-function: #fff;
|
36
47
|
|
37
48
|
// logo colors
|
38
49
|
$mail-color: #0072c5;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
///
|
2
|
-
//
|
2
|
+
// Skin: Ocean
|
3
3
|
// Author: Tian Qi
|
4
4
|
// Email: kitian616@outlook.com
|
5
5
|
///
|
@@ -17,22 +17,33 @@ $text-color-3: #00537f;
|
|
17
17
|
// background colors
|
18
18
|
$background-color: #f5fcff;
|
19
19
|
// text colors
|
20
|
-
$text-color-d:
|
21
|
-
$text-color:
|
22
|
-
$text-color-l:
|
20
|
+
$text-color-theme-light-d: #32434c;
|
21
|
+
$text-color-theme-light: #00537f;
|
22
|
+
$text-color-theme-light-l: #0079ba;
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: #fff;
|
25
|
+
$text-color-theme-dark: rgba(#fff, .95);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .85);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-light-d;
|
29
|
+
$text-color: $text-color-theme-light;
|
30
|
+
$text-color-l: $text-color-theme-light-l;
|
31
|
+
|
23
32
|
$text-background-color: rgba(#000, .05);
|
24
33
|
|
25
34
|
// border and shadow colors
|
26
35
|
$border-color: mix(#000, $background-color, 20%);
|
27
36
|
$border-color-l: mix(#000, $background-color, 10%);
|
28
|
-
$select-color: rgba($main-color-1, .5);
|
29
37
|
$decorate-color: rgba(#000, .1);
|
38
|
+
$mask-color: rgba(#000, .8);
|
39
|
+
$select-color: rgba($main-color-1, .5);
|
30
40
|
|
31
41
|
// function colors
|
32
42
|
$green: #57c22d;
|
33
43
|
$blue: #2593fc;
|
34
44
|
$yellow: #f8ac30;
|
35
45
|
$red: #f22635;
|
46
|
+
$text-color-function: #fff;
|
36
47
|
|
37
48
|
// logo colors
|
38
49
|
$mail-color: #0072c5;
|
@@ -1,38 +1,49 @@
|
|
1
1
|
///
|
2
|
-
//
|
2
|
+
// Skin: Orange
|
3
3
|
// Author: Tian Qi
|
4
4
|
// Email: kitian616@outlook.com
|
5
5
|
///
|
6
6
|
|
7
7
|
// main colors
|
8
|
-
$main-color-1: #
|
8
|
+
$main-color-1: #fa510f;
|
9
9
|
$text-color-1: #fff;
|
10
10
|
|
11
11
|
$main-color-2: #fc4d50;
|
12
12
|
$text-color-2: #fff;
|
13
13
|
|
14
|
-
$main-color-3: #
|
15
|
-
$text-color-3: #
|
14
|
+
$main-color-3: #f2f2f2;
|
15
|
+
$text-color-3: #333;
|
16
16
|
|
17
17
|
// background colors
|
18
|
-
$background-color: #
|
18
|
+
$background-color: #fff;
|
19
19
|
// text colors
|
20
|
-
$text-color-d:
|
21
|
-
$text-color:
|
22
|
-
$text-color-l:
|
20
|
+
$text-color-theme-light-d: rgba(#000, .95);
|
21
|
+
$text-color-theme-light: rgba(#000, .85);
|
22
|
+
$text-color-theme-light-l: rgba(#000, .5);
|
23
|
+
|
24
|
+
$text-color-theme-dark-d: #fff;
|
25
|
+
$text-color-theme-dark: rgba(#fff, .95);
|
26
|
+
$text-color-theme-dark-l: rgba(#fff, .85);
|
27
|
+
|
28
|
+
$text-color-d: $text-color-theme-light-d;
|
29
|
+
$text-color: $text-color-theme-light;
|
30
|
+
$text-color-l: $text-color-theme-light-l;
|
31
|
+
|
23
32
|
$text-background-color: rgba(#000, .05);
|
24
33
|
|
25
34
|
// border and shadow colors
|
26
35
|
$border-color: mix(#000, $background-color, 20%);
|
27
36
|
$border-color-l: mix(#000, $background-color, 10%);
|
28
|
-
$select-color: rgba($main-color-3, .5);
|
29
37
|
$decorate-color: rgba(#000, .1);
|
38
|
+
$mask-color: rgba(#000, .8);
|
39
|
+
$select-color: rgba($main-color-3, .5);
|
30
40
|
|
31
41
|
// function colors
|
32
42
|
$green: #57c22d;
|
33
43
|
$blue: #2593fc;
|
34
44
|
$yellow: #f8ac30;
|
35
45
|
$red: #f22635;
|
46
|
+
$text-color-function: #fff;
|
36
47
|
|
37
48
|
// logo colors
|
38
49
|
$mail-color: #0072c5;
|