Init Commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// Base colors
|
||||
$base-color: #478079; // #478079 - Your theme's primary color
|
||||
$primary: $base-color;
|
||||
$dark-primary: #66b2a9; // Brighter primary color for dark mode - enhanced contrast
|
||||
|
||||
// Link colors
|
||||
$link-color: $base-color;
|
||||
$link-hover-color: darken($base-color, 15%);
|
||||
$link-decoration: none;
|
||||
$sidebar-link-color: #000; // increased contrast
|
||||
|
||||
// Create CSS custom properties for Bootstrap
|
||||
:root {
|
||||
--bs-link-color: #{$base-color};
|
||||
--bs-link-color-rgb: #{red($base-color)}, #{green($base-color)}, #{blue($base-color)};
|
||||
--bs-link-hover-color: #{darken($base-color, 15%)};
|
||||
--bs-link-hover-color-rgb: #{red(darken($base-color, 15%))}, #{green(darken($base-color, 15%))}, #{blue(darken($base-color, 15%))};
|
||||
--bs-link-decoration: none;
|
||||
}
|
||||
|
||||
// Explicit link override for all <a> tags
|
||||
a {
|
||||
color: $base-color;
|
||||
text-decoration: $link-decoration;
|
||||
|
||||
&:hover {
|
||||
color: $link-hover-color;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user