@asd20/ui 3.2.784 → 3.2.785

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.784",
8
+ "version": "3.2.785",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -100,7 +100,7 @@ $factoid-fg: var(--website-card__reverse-background-color);
100
100
  box-sizing: border-box;
101
101
 
102
102
  &__value {
103
- color: var(--color__primary);
103
+ color: var(--color__primary-s10);
104
104
  font-size: 2.15rem;
105
105
  font-weight: bold;
106
106
  small {
@@ -111,7 +111,7 @@ $factoid-fg: var(--website-card__reverse-background-color);
111
111
  font-size: 0.85rem;
112
112
  font-weight: 300;
113
113
  // text-transform: uppercase;
114
- color: var(--color__primary-s50);
114
+ color: var(--color__primary-s80);
115
115
  // white-space: nowrap;
116
116
  opacity: 0.75;
117
117
  }
@@ -409,7 +409,8 @@ export default {
409
409
 
410
410
  h1 {
411
411
  position: relative;
412
- color: var(--website-header__title-color);
412
+ // color: var(--website-header__title-color);
413
+ color: rgb(255, 255, 255);
413
414
  @include asd20-font(
414
415
  1.5,
415
416
  var(--website-typography__font-family-headlines),
@@ -440,6 +441,7 @@ export default {
440
441
  }
441
442
 
442
443
  &__lead {
444
+ color: rgb(235, 235, 235);
443
445
  @include asd20-font(1, var(--website-typography__font-family-body));
444
446
  &::v-deep a {
445
447
  color: var(--website-header__foreground-color);
@@ -311,7 +311,8 @@ export default {
311
311
  width: 100%;
312
312
  height: 100%;
313
313
  color: hsl(0, 0%, 0%);
314
- fill: #80B3C0;
314
+ // fill: #80B3C0;
315
+ fill: var(--color__accent);
315
316
  }
316
317
 
317
318
  span {
@@ -357,9 +358,12 @@ export default {
357
358
  border-radius: 100%;
358
359
  background: rgba(0,0,0, 0.125);
359
360
  &:focus {
360
- box-shadow: 0 0 0 3px white, 0 0 10px 0 #477e88;
361
- outline: 3px solid #477e88;
362
- outline-offset: 0px;
361
+ // box-shadow: 0 0 0 2px white;
362
+ // outline: 2px solid white;
363
+ // outline-offset: -2px;
364
+ // box-shadow: 0 0 0 3px white, 0 0 10px 0 #477e88;
365
+ // outline: 3px solid #477e88;
366
+ // outline-offset: 0px;
363
367
  }
364
368
  }
365
369
  span {
@@ -33,7 +33,7 @@
33
33
  }
34
34
 
35
35
  @mixin asd20-focus() {
36
- box-shadow: inset 0 0 0 3px white, 0 0 10px 0 var(--color__accent-s20);
37
- outline: 3px solid var(--color__accent-s20);
36
+ box-shadow: inset 0 0 0 3px white, 0 0 3px 0 var(--color__accent-s10) !important;
37
+ outline: 2px solid var(--color__accent-s10);
38
38
  outline-offset: -2px;
39
39
  }