From 1df118073319c3cfcaae33c60d8651c0c08ba90f Mon Sep 17 00:00:00 2001 From: Urja Acharya Date: Wed, 7 Aug 2019 19:02:45 -0700 Subject: added pinkish theme --- exampleSite/config.toml | 1 + static/css/aafu_pinkish.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 static/css/aafu_pinkish.css diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 9476975..4c233fe 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -10,6 +10,7 @@ theme = "aafu" [params.theme] allowToggle = true + # Available themes are 'light', 'dark', and 'pinkish' mainTheme = "light" altTheme = "dark" diff --git a/static/css/aafu_pinkish.css b/static/css/aafu_pinkish.css new file mode 100644 index 0000000..e820610 --- /dev/null +++ b/static/css/aafu_pinkish.css @@ -0,0 +1,37 @@ +body { + background-color: #f8f9fa; + color: black; +} + +.profile-area { + background-color: #81415f; + color: white; + box-shadow: -4px -4px 5px 2px #595659; +} + +a, +.accordion { + color: #81415f; +} + +a:hover, +.accordion:hover { + color: #81415f; +} + +.profile-area a { + color: #ffc107; +} + +.profile-area a:hover { + color: #d6a206; +} + +.skillbar { + background-color: #fff; + border: solid 1px black; +} + +#skill-percent { + background-color: #81415f; +} -- cgit v1.2.3