diff options
author | Teddy Wing | 2018-11-11 15:25:06 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-11 15:25:18 +0100 |
commit | f57ecd9c731fe46642fc98886543d893c6d5aca6 (patch) | |
tree | ec2ce311e6f6fe7f7ce505534e2ce945e18ed59e | |
parent | 8b399af44fb1f4f1b76b619affb4f0c83c1246cd (diff) | |
download | dome-key-web-f57ecd9c731fe46642fc98886543d893c6d5aca6.tar.bz2 |
Use a different colour for section headers
-rw-r--r-- | assets/styles.css | 1 | ||||
-rw-r--r-- | assets/stylesheets/color.hcss | 1 | ||||
-rw-r--r-- | assets/stylesheets/typography.css | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/assets/styles.css b/assets/styles.css index f2b5a49..d7bb46d 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -8,6 +8,7 @@ h1, h2, h3, h4, h5, h6 { h2 { font-weight: bold; font-size: 1.5em; + color: #4e0303; } .code { font-family: "Monaco", monospace; diff --git a/assets/stylesheets/color.hcss b/assets/stylesheets/color.hcss index a69c88d..e8912f3 100644 --- a/assets/stylesheets/color.hcss +++ b/assets/stylesheets/color.hcss @@ -6,6 +6,7 @@ set(DESERT, #e3ce88) set(DRIP_COFFEE, #2d1f1c) set(HAAGEN_DASZ_BLACK_RASPBERRY, #8c6e6e) set(LIMEADE, #c9ccb4) +set(MAROON, #4e0303) set(MILK_CHOCOLATE, #402929) set(MURKY_POND, #91947f) diff --git a/assets/stylesheets/typography.css b/assets/stylesheets/typography.css index 7560fa8..cbefe8b 100644 --- a/assets/stylesheets/typography.css +++ b/assets/stylesheets/typography.css @@ -7,6 +7,8 @@ h1, h2, h3, h4, h5, h6 { h2 { font-weight: bold; font-size: 1.5em; + + color: MAROON; } .code { |