From 5734d4be6189cbbd122010c2f7d974d05e87a5bf Mon Sep 17 00:00:00 2001 From: Nasir Anthony Montalvo Date: Mon, 1 Dec 2025 18:53:53 -0600 Subject: [PATCH] reverint back --- _data/config-theme-colors.csv | 8 +++---- _data/theme.yml | 4 ++-- assets/css/custom.css | 40 ----------------------------------- 3 files changed, 6 insertions(+), 46 deletions(-) delete mode 100644 assets/css/custom.css diff --git a/_data/config-theme-colors.csv b/_data/config-theme-colors.csv index 9cd8394..f466022 100644 --- a/_data/config-theme-colors.csv +++ b/_data/config-theme-colors.csv @@ -1,9 +1,9 @@ color_class,color -primary,#ffffff -secondary, #999999 -success,#444444 +primary,#a4c9e8 +secondary,black +success,black info,#578bb5 warning,#578bb5 danger,#a83259 light,white -dark,#000000 \ No newline at end of file +dark,#080812 diff --git a/_data/theme.yml b/_data/theme.yml index 4f4d964..facde12 100644 --- a/_data/theme.yml +++ b/_data/theme.yml @@ -107,8 +107,8 @@ bootswatch: # leave blank or comment out for plain bootstrap # THEME FONTS [optional!] base-font-size: 1.2em -text-color: "#f5f5f5" -link-color: "#ffffff" +text-color: "#191919" +link-color: "#0d6efd" base-font-family: "'Space Mono', monospace" font-cdn: diff --git a/assets/css/custom.css b/assets/css/custom.css deleted file mode 100644 index 7e70794..0000000 --- a/assets/css/custom.css +++ /dev/null @@ -1,40 +0,0 @@ -/* GLOBAL DARK BACKGROUND */ -body { - background-color: #000 !important; - color: #f5f5f5 !important; -} - -/* NAVBAR */ -.navbar, .navbar-light, .navbar-default { - background-color: #000 !important; - border-bottom: 1px solid #222 !important; -} - -.navbar a, .navbar-brand, .navbar-nav .nav-link { - color: #fff !important; -} - -/* CARDS / FEATURE BLOCKS */ -.card, -.card-body, -.card-footer { - background-color: #111 !important; - color: #f5f5f5 !important; - border-color: #222 !important; -} - -/* TABLES */ -table { - background-color: #000 !important; - color: #f5f5f5 !important; -} - -th, td { - border-color: #333 !important; -} - -/* FOOTER */ -footer { - background-color: #000 !important; - color: #f5f5f5 !important; -}