-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoddess.less
93 lines (78 loc) · 2.5 KB
/
goddess.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import "../silence.less"; // 公共样式文件
@blog-bg-color: #fff; // 博客背景颜色
@blog-theme-color: #FF85B8; // 博客主题色
@blog-border-color: #ffebf2; // 博客边框颜色
@blog-font-color: #61687C; // 博客字体颜色
@blog-title-color: #61687C; // 博客标题颜色
@blog-github-fill-color: #FFC6DE; // GitHub 角标背景色
@post-catalog-bg-color: #fff; // 博文目录背景色
@post-table-thead-bg-color: #f9f9f9; // 博文表格标题背景色
@post-table-border-color: #fbdfeb; // 博文表格标题边框颜色
@post-inline-code-bg-color: #fbfbfb; // 博文行内代码背景色
@post-inline-code-border-color: #eee; // 博文行内代码边框颜色
@post-cnblogs-code-bg-color: #f2f4f5; // 博文默认代码块背景色
@post-cnblogs-code-font-color: #656c73; // 博文默认代码块字体色
@post-signature-bg-color: #f8f8f8; // 博文签名背景色
@post-blockquote-border-color:#FFC6DE; // 博文引用边框颜色
@comment-bg-color: #fff6fa; // 评论背景色
.cnblogs-markdown .hljs { // Markdown 编辑器模式代码块样式
display: block;
color: #333;
overflow-x: auto;
background: #F2F4F5 !important;
border: none !important;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace !important;
padding: 1em !important;
font-size: 14px !important;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
// 以上是一些主题必须设置颜色值和样式,可以根据自己的喜好调整。
// 下面可以参考博客园的 DOM 结构自由发挥写一些自己定制的样式。