Skip to content

Commit b4c6b9a

Browse files
authored
[BUGFIX] Set link-colors correctly (#676)
1 parent 79ede90 commit b4c6b9a

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

packages/typo3-docs-theme/assets/sass/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ $theme-colors: (
6767
darker: $darker
6868
);
6969

70-
$link-color: $tertiary;
71-
$link-hover-color: lighten($link-color, 15%);
70+
$link-color: $gray-900;
71+
$link-hover-color: $black;
7272
$link-alternate-color: #ffffff;
7373
$link-alternate-hover-color: darken($link-alternate-color, 15%);
7474

packages/typo3-docs-theme/resources/public/css/theme.css

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11167,11 +11167,11 @@ progress {
1116711167
--bs-tertiary-bg: #f8f9fa;
1116811168
--bs-tertiary-bg-rgb: 248, 249, 250;
1116911169
--bs-heading-color: inherit;
11170-
--bs-link-color: #005E85;
11171-
--bs-link-color-rgb: 0, 94, 133;
11170+
--bs-link-color: #333333;
11171+
--bs-link-color-rgb: 51, 51, 51;
1117211172
--bs-link-decoration: underline;
11173-
--bs-link-hover-color: #0094d2;
11174-
--bs-link-hover-color-rgb: 0, 148, 210;
11173+
--bs-link-hover-color: #000000;
11174+
--bs-link-hover-color-rgb: 0, 0, 0;
1117511175
--bs-code-color: hsl(350, 100%, 40%);
1117611176
--bs-highlight-color: #212529;
1117711177
--bs-highlight-bg: #fff3cd;
@@ -23841,8 +23841,8 @@ code {
2384123841

2384223842
:root {
2384323843
--frame-color: inherit;
23844-
--frame-link-color: #005E85;
23845-
--frame-link-hover-color: #0094d2;
23844+
--frame-link-color: #333333;
23845+
--frame-link-hover-color: #000000;
2384623846
--frame-background: transparent;
2384723847
--frame-embedded-border-radius: 0.5rem;
2384823848
--frame-width-large: 1600px;
@@ -24239,15 +24239,15 @@ code {
2423924239
.frame-background-secondary {
2424024240
--frame-color: #fff;
2424124241
--frame-background: #333333;
24242-
--frame-link-color: #005E85;
24243-
--frame-link-hover-color: #0094d2;
24242+
--frame-link-color: #333333;
24243+
--frame-link-hover-color: #000000;
2424424244
}
2424524245

2424624246
.frame-background-secondary-gradient {
2424724247
--frame-color: #fff;
2424824248
--frame-background: linear-gradient(135deg, #2b2b2b 15%, #525252 85%);
24249-
--frame-link-color: #005E85;
24250-
--frame-link-hover-color: #0094d2;
24249+
--frame-link-color: #333333;
24250+
--frame-link-hover-color: #000000;
2425124251
}
2425224252

2425324253
.frame-background-tertiary {
@@ -24260,43 +24260,43 @@ code {
2426024260
.frame-background-tertiary-gradient {
2426124261
--frame-color: #fff;
2426224262
--frame-background: linear-gradient(135deg, #005071 15%, #267697 85%);
24263-
--frame-link-color: #005E85;
24264-
--frame-link-hover-color: #0094d2;
24263+
--frame-link-color: #333333;
24264+
--frame-link-hover-color: #000000;
2426524265
}
2426624266

2426724267
.frame-background-quaternary {
2426824268
--frame-color: #000;
2426924269
--frame-background: #75a75a;
24270-
--frame-link-color: #005E85;
24271-
--frame-link-hover-color: #0094d2;
24270+
--frame-link-color: #333333;
24271+
--frame-link-hover-color: #000000;
2427224272
}
2427324273

2427424274
.frame-background-quaternary-gradient {
2427524275
--frame-color: #000;
2427624276
--frame-background: linear-gradient(135deg, #638e4d 15%, #8ab473 85%);
24277-
--frame-link-color: #005E85;
24278-
--frame-link-hover-color: #0094d2;
24277+
--frame-link-color: #333333;
24278+
--frame-link-hover-color: #000000;
2427924279
}
2428024280

2428124281
.frame-background-white {
2428224282
--frame-color: #000;
2428324283
--frame-background: #ffffff;
24284-
--frame-link-color: #005E85;
24285-
--frame-link-hover-color: #0094d2;
24284+
--frame-link-color: #333333;
24285+
--frame-link-hover-color: #000000;
2428624286
}
2428724287

2428824288
.frame-background-lighter {
2428924289
--frame-color: #000;
2429024290
--frame-background: #f7f7f7;
24291-
--frame-link-color: #005E85;
24292-
--frame-link-hover-color: #0094d2;
24291+
--frame-link-color: #333333;
24292+
--frame-link-hover-color: #000000;
2429324293
}
2429424294

2429524295
.frame-background-light {
2429624296
--frame-color: #000;
2429724297
--frame-background: #f2f2f2;
24298-
--frame-link-color: #005E85;
24299-
--frame-link-hover-color: #0094d2;
24298+
--frame-link-color: #333333;
24299+
--frame-link-hover-color: #000000;
2430024300
}
2430124301

2430224302
.frame-background-dark {

0 commit comments

Comments
 (0)