diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-02 18:37:39 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-02 18:37:39 +0530 |
commit | 451f37329c53dcf564a8cf79d6d901621eadec17 (patch) | |
tree | 2726aabcf72f66d70b6e183f68dc17f86509b217 /static/scss | |
parent | 67c4c48c8f7b1dfa0481c2bf27aa4efa68df144a (diff) |
changed heading colors in /docs
Diffstat (limited to 'static/scss')
-rw-r--r-- | static/scss/docs.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/static/scss/docs.scss b/static/scss/docs.scss index a995b33..b382476 100644 --- a/static/scss/docs.scss +++ b/static/scss/docs.scss @@ -9,8 +9,8 @@ $bgColorAlt: #444445; $fgColorAlt: #ffffff; $headingColor0: #2ed19b; -$headingColor1: #db4b91; -$headingColor2: #638dcf; +$headingColor1: #638dcf; +$headingColor2: #db4b91; $linkColor: #eda74a; $linkColorAlt: #db4b91; @@ -63,15 +63,15 @@ img { background-color: $headingColor0; } -h1, h2 { +h1, h4 { color: $headingColor0; } -h3, h4 { +h2, h5 { color: $headingColor1; } -h5, h6 { +h3, h6 { color: $headingColor2; } |