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}; --tertiary: #{$tertiary};
--success: #{$success}; --success: #{$success};
--info: #{$info}; --info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1; --icon: #f1f1f1;
--box-bg: #24273e; --box-bg: #24273e;
@ -1277,3 +1279,10 @@ app-global-footer {
background-color: var(--secondary); background-color: var(--secondary);
border-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; $secondary: #272f4e;
$tertiary: #6225b2; $tertiary: #6225b2;
$success: #0aab2f; $success: #0aab2f;
$info: #10e0ff; $info: #00ddff;
$h5-font-size: 1.15rem !default; $h5-font-size: 1.15rem !default;
@ -69,6 +69,8 @@ $dropdown-link-active-bg: $active-bg;
--tertiary: #{$tertiary}; --tertiary: #{$tertiary};
--success: #{$success}; --success: #{$success};
--info: #{$info}; --info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1; --icon: #f1f1f1;
--box-bg: #171c2a; --box-bg: #171c2a;

View file

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