From 18a64279fddd65d3d555ad632d20c8d6b6f8ee6b Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 10 Jan 2026 19:18:24 +0900 Subject: [PATCH] Apply white BG and black color --- static/styles.css | 21 ++++++++++++--------- templates/dashboard.html | 1 + 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/static/styles.css b/static/styles.css index 6efaaf4..f8b689e 100644 --- a/static/styles.css +++ b/static/styles.css @@ -1,6 +1,6 @@ :root { --black: #000000; - --almost-black: #080708; + --almostBlack: #888888; --blue: #3772FF; --blue-light: #3787ff; --red: #DF2935; @@ -19,9 +19,8 @@ body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 22px; line-height: 1.5; - color: var(--white); - background: var(--black); - background-image: linear-gradient(to bottom right, var(--almost-black), var(--black)); + color: var(--black); + background: var(--white); display: flex; flex-direction: column; justify-content: center; @@ -37,14 +36,16 @@ body,html { align-items: flex-start; width: 80%; border: 1px solid rgb(40, 40, 40); + border-radius: 8px; padding-bottom: 40px; padding: 50px; + color: var(--black) !important; } .form-section { padding: 15px 0 0 15px; width: 100%; - color: var(--light); + color: var(--black); flex-shrink: 0; } @@ -167,7 +168,7 @@ button[type='button']:hover, .dashboard-container { padding: 15px 15px 15px 15px; width: 100%; - color: var(--light); + color: var(--black); flex-shrink: 0; } /* Table Styling */ @@ -279,6 +280,7 @@ select.fancy-select::-ms-expand { .quota-block { margin: 8px 0 18px; flex: 0 0 auto; + color: var(--almostBlack) !important; } .quota-donut { position: relative; @@ -293,7 +295,8 @@ select.fancy-select::-ms-expand { height: 100%; } .donut-ring { - stroke: rgba(255,255,255,0.06); + stroke: rgba(9, 9, 9, 0.1); + /* fill: black; */ stroke-linecap: round; vector-effect: non-scaling-stroke; shape-rendering: geometricPrecision; @@ -315,7 +318,7 @@ select.fancy-select::-ms-expand { align-items: center; justify-content: center; pointer-events: none; - color: var(--white); + color: var(--almostBlack); } .quota-percent { font-size: 18px; @@ -325,7 +328,7 @@ select.fancy-select::-ms-expand { .quota-number { font-size: 12px; font-weight: 700; - color: var(--light); + color: var(--almostBlack); } .quota-label { font-size: 11px; diff --git a/templates/dashboard.html b/templates/dashboard.html index f1db80d..a6c65bc 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -6,6 +6,7 @@ ADrive Share +