Skip to content

Commit 3a2b75e

Browse files
committed
change to darkmode, update colors
1 parent 8b562ae commit 3a2b75e

File tree

5 files changed

+12
-21
lines changed

5 files changed

+12
-21
lines changed

_sass/_base.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ body {
2121
color: $text-color;
2222
background-color: $background-color;
2323
-webkit-text-size-adjust: 100%;
24+
color-scheme: dark;
2425
}
2526

2627

@@ -97,7 +98,7 @@ a {
9798
}
9899

99100
&:hover {
100-
color: $text-color;
101+
color: $accent-color;
101102
text-decoration: underline;
102103
}
103104
}

_sass/_layout.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Site header
33
*/
44
.site-header {
5-
border-top: 5px solid $grey-color-dark;
5+
border-top: 5px solid $brand-color;
66
border-bottom: 1px solid $grey-color-light;
77
min-height: 56px;
88

@@ -19,7 +19,7 @@
1919

2020
&,
2121
&:visited {
22-
color: $grey-color-dark;
22+
color: $text-color;
2323
}
2424
}
2525

@@ -64,7 +64,7 @@
6464
height: 15px;
6565

6666
path {
67-
fill: $grey-color-dark;
67+
fill: $text-color;
6868
}
6969
}
7070
}

_sass/_syntax-highlighting.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
* Syntax highlighting styles
33
*/
44
.highlight {
5-
background: #fff;
5+
background: hsl(225, 15%, 18%);
6+
color: $text-color;
67
@extend %vertical-rhythm;
78

89
.c { color: #998; font-style: italic } // Comment

css/main.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ $base-line-height: 1.5;
1717

1818
$spacing-unit: 30px;
1919

20-
$text-color: #111;
21-
$background-color: #fdfdfd;
22-
$brand-color: #2a7ae2;
20+
$text-color: #E2E4E9D1; // Semi-opaque light text (docs slate vibe)
21+
$background-color: hsl(225, 15%, 14%); // Material "slate" background
22+
$brand-color: #c1775c; // Match docs primary (brown)
23+
$accent-color: #00bad6; // Match docs accent (cyan)
2324

24-
$grey-color: #828282;
25+
$grey-color: #A6ADBB; // Muted grey suitable for dark background
2526
$grey-color-light: lighten($grey-color, 40%);
2627
$grey-color-dark: darken($grey-color, 25%);
2728

index.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,4 @@ The Classical Language Toolkit (CLTK) is a Python library offering natural langu
77
## Maintainers
88

99
* [Kyle P. Johnson](https://github.com/kylepjohnson)
10-
* [Patrick J. Burns](https://github.com/diyclassics)
11-
* [John Stewart](https://github.com/free-variation)
12-
* [Todd Cook](https://github.com/todd-cook)
1310
* [Clément Besnier](https://github.com/clemsciences)
14-
* [William J. B. Mattingly](https://github.com/wjbmattingly)
15-
16-
17-
## Academic Advisors
18-
19-
* Neil Coffee, University at Buffalo (Associate Professor of Classics); [Tesserae](http://tesserae.caset.buffalo.edu/) (Principal Investigator)
20-
* Gregory Crane, Universität Leipzig (Humboldt Chair of Digital Humanities), Tufts University (Professor of Classics); [Perseus](http://www.perseus.tufts.edu/hopper/collections) (Editor–in–Chief) and [Open Philology](http://www.dh.uni-leipzig.de/wo/open-philology-project/) (Director)
21-
* Peter Meineck, New York University (Associate Professor of Classics); Aquila Theatre (Founder), Ancient Greeks/Modern Lives (Founder, Director)
22-
* Leonard Muellner, Brandeis University (Professor Emeritus of Classical Studies); Center for Hellenic Studies (Director of Publications, Information Technology and Libraries)

0 commit comments

Comments
 (0)