mirror of
https://github.com/friebetill/obsidian-file-diff.git
synced 2026-07-22 07:40:25 +00:00
Fix colors for dark mode
This commit is contained in:
parent
45f458bae0
commit
a59fc198f3
1 changed files with 18 additions and 6 deletions
24
styles.css
24
styles.css
|
|
@ -9,12 +9,24 @@
|
|||
padding: 0.1rem 0;
|
||||
}
|
||||
|
||||
.bg-turquoise-light {
|
||||
background-color: #d9f4ef;
|
||||
@media (prefers-color-scheme: light) {
|
||||
.bg-turquoise-light {
|
||||
background-color: #D9F4EF;
|
||||
}
|
||||
|
||||
.bg-blue-light {
|
||||
background-color: #25403B;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-blue-light {
|
||||
background-color: #d9edff;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.bg-turquoise-light {
|
||||
background-color: #25403B;
|
||||
}
|
||||
|
||||
.bg-blue-light {
|
||||
background-color: #25394B;
|
||||
}
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
|
|
@ -31,7 +43,7 @@
|
|||
text-decoration-line: none;
|
||||
}
|
||||
|
||||
.no-decoration:hover{
|
||||
.no-decoration:hover {
|
||||
text-decoration: none;
|
||||
text-decoration-line: none;
|
||||
}
|
||||
|
|
@ -47,4 +59,4 @@
|
|||
|
||||
.text-gray {
|
||||
color: #919191;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue