如何在Caliber Ebook Viewer中获得黑暗的主题/夜间模式?


10

大多数电子书阅读器都带有标准的简易夜间模式开关。我想在Calibre中弄清楚这一点。到目前为止,我已经能够通过创建以下内容来更改应用主题以使用我的深色系统主题

$ sudo nano /etc/profile.d/calibre.sh

export CALIBRE_USE_SYSTEM_THEME=1

然后

$ sudo service gdm restart

但是我仍然需要帮助,以使Ebook Viewer中的背景更暗,文字更浅。


export CALIBRE_USE_DARK_PALETTE=1@meskobalazs在评论中说,在4.6版中,它用于Caliber main中的深色GUI。对于查看者来说,现在可以从设置中更改颜色,所以我发布了一个新答案。
cipricus

Answers:


1

我认为不需要新的CSS文件。同样,主要答案中的指令已经过时(与具有不同Ebook Viewer GUI的Calibre的较旧版本有关),Caliber主GUI深色调色板的命令(正在考虑中)也是如此(参见问题)。在4.6版中进行测试,就export CALIBRE_USE_DARK_PALETTE=1可以达到该结果-如@meskobalazs在评论中所述。)

为了在电子书查看器中获得深色背景和浅色字体,只需用它打开一本电子书(使用查看器,而不是Calibre本身;或者从Caliber main中选择书,然后按“查看”(阅读书)按钮) ; 然后,右键单击,然后选择首选项

在此处输入图片说明

然后颜色

在此处输入图片说明

然后新方案

在此处输入图片说明

然后设置背景和前景(文本)的颜色。

选择“ 应用”,然后选择“ 确定”。


在某些电子书文档中,无论上述设置如何,字体颜色都保持黑色,这是一个奇怪的问题,在这种情况下,使背景变暗是不可行的。在这种情况下,其他一些电子书阅读器也会遇到相同的问题(Foliate),而某些读者可以解决该问题(Bookworm)。

至于说这里相对于字体类型,电子书里面的CSS文件可能会覆盖软件的设置,包括字体颜色。经过测试,我提取了epub文件(实际上是一个zip;有些档案管理员需要zip扩展名,有些可以直接提取),并发现/EXTRACTED_LOCATION/OEBPS/Content/Content.css该行color:Black多次出现。用“灰色”代替它会给出一个较暗(但可读)的灰色,而“ #DBDBDB”则给出一个较浅的灰色。(更改之后,将提取的文件和文件夹压缩回zip文件,然后将该扩展名更改为epub。)

但是在这里我发现可以从Calibre内部进行更改:转换书籍>外观>样式,选择以转换为相同的格式并选中“颜色”(而不是“字体”旁边)。

在此处输入图片说明


11

除了使整个应用程序主题变暗的问题中的步骤外,还必须在电子书查看器中应用主题。这样做的方法如下:

保存默认主题

  1. 打开一本电子书(任何电子书)。
  2. 单击左下方的“设置”图标(螺丝刀和扳手图标,具体取决于您的版本)。
  3. 打开“ 主题”选项卡,然后通过您选择的名称保存主题。

创建黑暗主题

  1. 打开用户样式表选项卡
  2. 在此答案的底部粘贴Solarised Dark主题CSS代码。来源于saucemcboss的Github Repo
  3. 打开“ 主题”选项卡,然后通过您选择的名称保存新主题。

这样,它将与您应用程序的主题一起应用于您的所有电子书。您可以从“主题”选项卡的“ 加载”按钮在默认主题和深色主题之间进行切换。

CSS:

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-family: 'PT Sans', sans-serif;
}
pre,
code {
  font-family: 'Inconsolata', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-weight: 700;
}
html {
  background-color: #073642;
  color: #839496;
}
body {
  background-color: #002b36;
  margin: 0 auto;
  max-width: 23cm;
  border: 1pt solid #586e75;
  padding: 1em;
}
code {
  background-color: #073642;
  padding: 2px;
}
a {
  color: #b58900;
}
a:visited {
  color: #cb4b16;
}
a:hover {
  color: #cb4b16;
}
h1 {
  color: #d33682;
}
h2,
h3,
h4,
h5,
h6 {
  color: #859900;
}
pre {
  background-color: #002b36;
  color: #839496;
  border: 1pt solid #586e75;
  padding: 1em;
  box-shadow: 5pt 5pt 8pt #073642;
}
pre code {
  background-color: #002b36;
}
h1 {
  font-size: 2.8em;
}
h2 {
  font-size: 2.4em;
}
h3 {
  font-size: 1.8em;
}
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.3em;
}
h6 {
  font-size: 1.15em;
}
.tag {
  background-color: #073642;
  color: #d33682;
  padding: 0 0.2em;
}
.todo,
.next,
.done {
  color: #002b36;
  background-color: #dc322f;
  padding: 0 0.2em;
}
.tag {
  -webkit-border-radius: 0.35em;
  -moz-border-radius: 0.35em;
  border-radius: 0.35em;
}
.TODO {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #2aa198;
}
.NEXT {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #268bd2;
}
.ACTIVE {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #268bd2;
}
.DONE {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #859900;
}
.WAITING {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #cb4b16;
}
.HOLD {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #d33682;
}
.NOTE {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #d33682;
}
.CANCELLED {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  background-color: #859900;
}

我猜这是关于旧版本的,现在的设置有所不同:在查看器中右键单击,然后单击“首选项”。
cipricus

2

在Calibre 4.6版本中,您现在可以使用CALIBRE_USE_DARK_PALETTE=1环境变量。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.