自定义next主题使用鼠标悬停在超链接上时显示的颜色

hexo博客框架的next主题默认悬停变色颜色是 深黑色(#222),要自定义显示颜色只需修改一处(但菜单栏上半部 背景色 也会随之改变)

next版本7.8.0

获取颜色十六进制值见:https://www.color-hex.com/

hexo/themes/next/source/css/_variables/base.styl 只修改(绿色)十六进制值:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Colors
// colors for use across theme.
// --------------------------------------------------
$whitesmoke = #f5f5f5;
$gainsboro = #eee;
$grey-lighter = #ddd;
$grey-light = #ccc;
$grey = #bbb;
$grey-dark = #999;
$grey-dim = #666;
$black-light = #555;
$black-dim = #333;
+ $black-deep = #0d71cc;
$red = #ff2a2a;
$blue-bright = #87daff;
$blue = #0684bd;
$blue-deep = #262a30;
$orange = #fc6423;