forked from andanteyk/ElectronicObserver
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
主题:可通过 Settings\ColorScheme.json 自定义配色 配色文件格式请参考 ColorScheme.example.json 旧版本自带配色文件为 ColorScheme.Solarized.json 司令部:增加直接显示战果的选项 ( 需手动编辑配置文件将 ShowGrowthInsteadOfNextInHQ 设为 true 以开启 ) 舰队:优化索敌值 Tooltip 排版 ( 33 式索敌值用 [] 标出 ) 舰队编成:筛选条件新增 "远征中" 修正错译 "显示滚动条" => "显示状态栏" 舰队一览:优化泊地修理 Tooltip 排版,修理耗时进位到整分钟 泊地修理 Tooltip 增加每 HP 耗时显示 ( 最大显示 5, 可通过配置文件中 MaxAkashiPerHP 调整,设 0 关闭 ) 其他各种用语微调 ( "时间" => "耗时" 等 ) 注:配置文件中新增的隐藏设置项需运行一次新版后才会写入
- Loading branch information
Showing
18 changed files
with
815 additions
and
469 deletions.
There are no files selected for viewing
Submodule DockPanelSuite
updated
206 files
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Solarized Light & Solarized Dark | ||
// Version 20170119 | ||
// Based on "Solarized" by Ethan Schoonover (http://ethanschoonover.com/solarized) | ||
|
||
[{ | ||
"name": "Solarized Light", | ||
"basicColors": { // SolarizedColors | ||
"red": "#dc322f", | ||
"orange": "#cb4b16", | ||
"yellow": "#b58900", | ||
"green": "#859900", | ||
"cyan": "#2aa198", | ||
"blue": "#268bd2", | ||
"magenta": "#d33682", | ||
"violet": "#6c71c4" | ||
}, | ||
"barColors": [[ | ||
"#c71015", | ||
"#c71015", | ||
"#FF8800", | ||
"#FF8800", | ||
"#FFBF00", | ||
"#FFBF00", | ||
"#469046", | ||
"#469046", | ||
"#268BD2", | ||
"#a3c8a3", | ||
"#FFD2D2", | ||
"#EEE8D5" | ||
]], | ||
"panelColors": { | ||
"foreground": "#586e75", // SolarizedBase01 | ||
"background": "#fdf6e3", // SolarizedBase3 | ||
"foreground2": "#657b83", // SolarizedBase00 | ||
"background2": "#eee8d5", // SolarizedBase2 | ||
"quest": { | ||
"processLT50": "#d68d00", | ||
"processLT80": "#469046", | ||
"processLT100": "#3c897f" | ||
} | ||
} | ||
},{ | ||
"name": "Solarized Dark", | ||
"basicColors": { // SolarizedColors | ||
"red": "#dc322f", | ||
"orange": "#cb4b16", | ||
"yellow": "#b58900", | ||
"green": "#859900", | ||
"cyan": "#2aa198", | ||
"blue": "#268bd2", | ||
"magenta": "#d33682", | ||
"violet": "#6c71c4" | ||
}, | ||
"barColors": [[ | ||
"#c71015", | ||
"#c71015", | ||
"#c94800", | ||
"#c94800", | ||
"#d68d00", | ||
"#d68d00", | ||
"#469046", | ||
"#469046", | ||
"#268BD2", | ||
"#a3c8a3", | ||
"#63080a", | ||
"#073642" | ||
]], | ||
"panelColors": { | ||
"foreground": "#93a1a1", // SolarizedBase1 | ||
"background": "#002b36", // SolarizedBase03 | ||
"foreground2": "#839496", // SolarizedBase0 | ||
"background2": "#073642", // SolarizedBase02 | ||
"quest": { | ||
"processLT50": "#d68d00", | ||
"processLT80": "#469046", | ||
"processLT100": "#3c897f" | ||
} | ||
} | ||
}] |
Oops, something went wrong.