forked from maffinca69/Telegraph-DarkTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (38 loc) · 1.16 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*Variables*/
:root {
--main-text: #FAF3E3;
--background: #000000;
--side-color: #FF9F29;
--headings: #FF9F29;
--blockquote-brdr: #FF9F29;
--button-bg: #1A4D2E;
--button-text: #FAF3E3;
}
/* Background */
body {
background-color: var(--background);
}
/* Main text color */
.tl_article .tl_article_content, .tl_article .tl_article_content .ql-editor * {
color: var(--main-text);
}
.tl_article h1, .tl_article h2, .tl_article .tl_article_content, .tl_article .tl_article_content {
color: var(--headings);
}
.tl_page .tl_article .tl_article_content h3,
.tl_page .tl_article .tl_article_content h4 {
color: var(--headings);
}
.tl_page .tl_article .tl_article_content blockquote {
opacity: .7;
border-left-color: var(--blockquote-brdr);
}
/* The color of the side of the text */
.tl_article.tl_article_edit.title_focused [data-label]:after {
color: var(--side-color);
}
/* The publish and edit button */
.tl_article_edit .publish_button, .tl_article_saving .publish_button, .tl_article .share_button, .tl_article_editable .edit_button {
color: var(--button-text);
background-color: var(--button-bg);
}