Skip to content

Commit 2c3e7e7

Browse files
committed
feature(white-theme)
1 parent 6242af9 commit 2c3e7e7

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

_sass/_base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ footer.sticky-bottom {
637637
width: 100%;
638638
}
639639
.card-text{
640-
color: rgb(227, 228, 218); // color: for text in the card of the project, not the title.
640+
color: var(--global-card-text-color-dimmed);
641641
}
642642
}
643643

_sass/_themes.scss

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
/*******************************************************************************
22
* Themes
33
******************************************************************************/
4-
:root { --global-bg-color: #0A0A0A; /* Deep black for a sleek, modern base */
5-
--global-code-bg-color: #1A1A1A; /* Slightly lighter black for code blocks */
6-
--global-text-color: #F0F0F5; /* Crisp white for primary text */
7-
--global-text-color-light: #B0B0B5; /* Soft gray for secondary text */
4+
:root {
85
--global-theme-color: #104f32; /* Neon green for accents (geeky and futuristic) */
96
--global-hover-color: #1a3f2e; /* Slightly darker green for hover states */
107
--global-hover-text-color: #165436; /* Light green for hover text */
11-
--global-footer-bg-color: #1E1E1E; /* Deep gray for the footer */
128
--global-footer-text-color: #8E8E93; /* Light gray for footer text */
139
--global-footer-link-color: #1c4a34b4; /* Neon green for footer links */
1410
--global-distill-app-color: #6D83F2; /* Soft blue for subdued elements */
@@ -29,6 +25,34 @@
2925
--global-cv-text: #D1D5DA; /* Light gray for CV text */
3026
--global-page-link-color: #1f6544; /* Neon green for links */
3127
--global-page-link-hover-color: #1c4632; /* Slightly darker green for hovered links */
28+
29+
--global-bg-color: #FFFFFF; /* Pure white for a clean, modern base */
30+
--global-code-bg-color: #F5F5F5; /* Light gray for code blocks */
31+
--global-text-color: #333333; /* Dark gray for primary text */
32+
--global-text-color-light: #666666; /* Medium gray for secondary text */
33+
--global-hover-text-color: #004080; /* Darker blue for hover text */
34+
--global-footer-bg-color: #F8F9FA; /* Light gray for the footer */
35+
--global-footer-text-color: #6C757D; /* Medium gray for footer text */
36+
--global-footer-link-color: #007BFF; /* Bright blue for footer links */
37+
--global-distill-app-color: #6D83F2; /* Soft blue for subdued elements */
38+
--global-divider-color: #E0E0E0; /* Light gray for dividers */
39+
--global-card-bg-color: #F8F9FA; /* Light gray for card backgrounds */
40+
--global-tip-block: #28A745; /* Green for tips */
41+
--global-tip-block-bg: #E8F5E9; /* Light green for tip backgrounds */
42+
--global-tip-block-text: #155724; /* Dark green for tip text */
43+
--global-tip-block-title: #28A745; /* Green for tip titles */
44+
--global-warning-block: #FFC107; /* Vibrant yellow for warnings */
45+
--global-warning-block-bg: #FFF3CD; /* Light yellow for warning backgrounds */
46+
--global-warning-block-text: #856404; /* Dark yellow for warning text */
47+
--global-warning-block-title: #FFC107; /* Yellow for warning titles */
48+
--global-danger-block: #DC3545; /* Bright red for errors */
49+
--global-danger-block-bg: #F8D7DA; /* Light red for danger backgrounds */
50+
--global-danger-block-text: #721C24; /* Dark red for error text */
51+
--global-danger-block-title: #DC3545; /* Bright red for error titles */
52+
--global-cv-text: #495057; /* Dark gray for CV text */
53+
--global-page-link-color: #007BFF; /* Bright blue for links */
54+
--global-page-link-hover-color: #0056b3; /* Slightly darker blue for hovered links */
55+
--global-card-text-color-dimmed: #6C757D; /* Medium gray for dimmed card text */
3256
}
3357

3458
#light-toggle-system {
@@ -67,6 +91,8 @@
6791
--global-divider-color: #333333; /* Subtle gray */
6892
--global-card-bg-color: #1E1E1E; /* Dark gray */
6993
--global-cv-text: #D1D5DA; /* Light gray */
94+
--global-card-text-color-dimmed: rgb(227, 228, 218); // color: for text in the card of the project, not the title.
95+
;
7096
}
7197

7298
.repo-img-light {

assets/img/prof_pic.png

0 Bytes
Loading

0 commit comments

Comments
 (0)