Skip to content

Commit 1b78930

Browse files
committed
🎨 Expand Django color scheme variables
1 parent 95da0a9 commit 1b78930

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

_sass/color_schemes/django.scss

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
$link-color: $green-300;
1+
// Django Brand Colors
2+
$django-green-dark: #0C4B33;
3+
$django-green-mid: #20AA76;
4+
$django-green-light: #44B78B;
5+
$django-green-pale: #E8F5F0;
6+
$django-cream: #F9F7F3;
7+
8+
// Theme Configuration
9+
$color-scheme: light;
10+
11+
// Body & Text
12+
$body-background-color: $white;
13+
$body-heading-color: $django-green-dark;
14+
$body-text-color: #333333;
15+
16+
// Links & Buttons
17+
$link-color: $django-green-mid;
18+
$btn-primary-color: $django-green-dark;
19+
$base-button-color: $django-green-pale;
20+
21+
// Sidebar & Navigation
22+
$sidebar-color: $django-green-pale;
23+
$nav-child-link-color: $django-green-dark;
24+
25+
// Code Blocks
26+
$code-background-color: $django-cream;
27+
28+
// Search & Tables
29+
$search-background-color: $white;
30+
$search-result-preview-color: #666666;
31+
$table-background-color: $white;
32+
$feedback-color: darken($django-green-pale, 5%);

0 commit comments

Comments
 (0)