Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to the **Prowler UI** are documented in this file.
### 🔄 Changed

- Standardized "Providers" wording across UI and documentation, replacing legacy "Cloud Providers" / "Accounts" / "Account Groups" copy [(#10971)](https://github.com/prowler-cloud/prowler/pull/10971)
- Dark mode: pure-black canvas, pure-white primary text, and brighter border / input tokens for clearer separation between cards, tables, and inputs [(#11073)](https://github.com/prowler-cloud/prowler/pull/11073)

---

Expand Down
31 changes: 17 additions & 14 deletions ui/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@
--gradient-lighthouse: linear-gradient(96deg, #2EE59B 3.55%, #62DFF0 98.85%);
}

/* ===== DARK THEME ===== */
/* ===== DARK THEME =====
* Editorial contrast tweaks: pure-black canvas, pure-white primary text,
* and one tier brighter primary border for clearer element separation.
*/
.dark {
/* Button Colors */
--bg-button-primary: var(--color-emerald-300);
Expand All @@ -103,30 +106,30 @@
--bg-neutral-map: var(--color-gray-800);

/* Input Colors */
--bg-input-primary: var(--color-neutral-900);
--border-input-primary: var(--color-neutral-800);
--border-input-primary-press: var(--color-neutral-800);
--bg-input-primary: #0a0a0a;
Comment thread
HugoPBrito marked this conversation as resolved.
Outdated
Comment thread
HugoPBrito marked this conversation as resolved.
Outdated
--border-input-primary: var(--color-zinc-700);
--border-input-primary-press: var(--color-zinc-500);
--border-input-primary-pressed: #A7F3D0;
--border-input-primary-fill: var(--color-neutral-300);
--border-input-primary-fill: var(--color-zinc-200);

/* Text Colors */
--text-neutral-primary: var(--color-zinc-100);
--text-neutral-secondary: var(--color-zinc-300);
--text-neutral-primary: #ffffff;
--text-neutral-secondary: var(--color-zinc-200);
--text-neutral-tertiary: var(--color-zinc-400);
--text-error-primary: var(--color-red-500);
--text-warning-primary: var(--color-orange-500);
--text-error-primary: var(--color-red-400);
--text-warning-primary: var(--color-orange-400);
--text-success-primary: var(--color-green-500);

/* Border Colors */
--border-error-primary: var(--color-red-400);
--border-neutral-primary: var(--color-zinc-800);
--border-neutral-secondary: var(--color-zinc-900);
--border-neutral-tertiary: var(--color-zinc-900);
--border-neutral-primary: var(--color-zinc-700);
--border-neutral-secondary: var(--color-zinc-800);
--border-neutral-tertiary: var(--color-zinc-700);
--border-tag-primary: var(--color-slate-700);
--border-data-emphasis: rgba(255, 255, 255, 0.1);
--border-data-emphasis: rgba(255, 255, 255, 0.14);

/* Background Colors */
--bg-neutral-primary: var(--color-zinc-950);
--bg-neutral-primary: #000000;
--bg-neutral-secondary: var(--color-stone-950);
--bg-neutral-tertiary: #121110;
--bg-tag-primary: var(--color-slate-950);
Expand Down
3 changes: 2 additions & 1 deletion ui/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ module.exports = {
foreground: "#000000",
},
focus: "#6ee7b7",
background: "#09090B",
background: "#000000",
foreground: "#ffffff",
},
},
light: {
Expand Down
Loading