Make links color manageable with themes

This commit is contained in:
natsoni 2024-04-22 12:36:43 +02:00 committed by Mononaut
parent 0fcd132df4
commit 6a767ce5c4
No known key found for this signature in database
GPG key ID: A3F058E41374C04E
3 changed files with 15 additions and 2 deletions

View file

@ -72,6 +72,8 @@ $dropdown-link-active-bg: $active-bg;
--tertiary: #{$tertiary};
--success: #{$success};
--info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1;
--box-bg: #24273e;
@ -1276,4 +1278,11 @@ app-global-footer {
.btn-secondary {
background-color: var(--secondary);
border-color: var(--secondary);
}
a {
color: var(--link-color);
&:hover {
color: var(--link-hover-color);
}
}

View file

@ -21,7 +21,7 @@ $primary: #007cfa;
$secondary: #272f4e;
$tertiary: #6225b2;
$success: #0aab2f;
$info: #10e0ff;
$info: #00ddff;
$h5-font-size: 1.15rem !default;
@ -69,6 +69,8 @@ $dropdown-link-active-bg: $active-bg;
--tertiary: #{$tertiary};
--success: #{$success};
--info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1;
--box-bg: #171c2a;

View file

@ -21,7 +21,7 @@ $primary: #007cfa;
$secondary: #272f4e;
$tertiary: #6225b2;
$success: #0aab2f;
$info: #10e0ff;
$info: #00ddff;
$h5-font-size: 1.15rem !default;
@ -69,6 +69,8 @@ $dropdown-link-active-bg: $active-bg;
--tertiary: #{$tertiary};
--success: #{$success};
--info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1;
--box-bg: #171c2a;