mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-15 12:41:35 +00:00
commit
b0b446b11c
2 changed files with 91 additions and 0 deletions
90
app/static/css/dark-theme.css
Normal file
90
app/static/css/dark-theme.css
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.white {
|
||||||
|
background-color: #111 !important;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blue.darken-3 {
|
||||||
|
background-color: #1E5DA6 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.btn-switch-type {
|
||||||
|
background-color: #333;
|
||||||
|
color: #5CA8FF;
|
||||||
|
}
|
||||||
|
.btn-switch-type:hover {
|
||||||
|
background-color: #444 !important;
|
||||||
|
color: #5CA8FF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-switch-type.active {
|
||||||
|
background-color: #3392FF !important;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn-switch-type.active:hover {
|
||||||
|
background-color: #5CA8FF !important;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
select {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
border: 1px solid #444 !important;
|
||||||
|
background-color: #222 !important;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
border: 1px solid #444;
|
||||||
|
background: #222;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
code[class*="language-"], pre[class*="language-"] {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 0 1px #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.token.atrule,
|
||||||
|
.token.attr-value,
|
||||||
|
.token.keyword {
|
||||||
|
color: #40b5e8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.language-css .token.string,
|
||||||
|
.style .token.string,
|
||||||
|
.token.entity,
|
||||||
|
.token.operator,
|
||||||
|
.token.url {
|
||||||
|
color: #eecfab;
|
||||||
|
background: hsla(0,0%,15%,.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.attr-name,
|
||||||
|
.token.builtin,
|
||||||
|
.token.char,
|
||||||
|
.token.inserted,
|
||||||
|
.token.selector,
|
||||||
|
.token.string {
|
||||||
|
color: #acd25f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.boolean,
|
||||||
|
.token.constant,
|
||||||
|
.token.deleted,
|
||||||
|
.token.number,
|
||||||
|
.token.property,
|
||||||
|
.token.symbol,
|
||||||
|
.token.tag {
|
||||||
|
color: #ff8bcc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.class-name, .token.function {
|
||||||
|
color: #ff7994;
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,6 +20,7 @@
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/material-icons.css') }}" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/material-icons.css') }}" />
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/prism.min.css') }}" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/prism.min.css') }}" />
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}?v={{ version }}" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}?v={{ version }}" />
|
||||||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/dark-theme.css') }}" />
|
||||||
|
|
||||||
{% if gaId %}
|
{% if gaId %}
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
|
Loading…
Reference in a new issue