@vsn-ux/gaia-styles 1.0.0-alpha.2

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.
Files changed (51) hide show
  1. package/README.md +125 -0
  2. package/dist/all-no-reset-10pt.css +994 -0
  3. package/dist/all-no-reset.css +994 -0
  4. package/dist/all.css +1135 -0
  5. package/dist/base.css +6 -0
  6. package/dist/components/avatar.css +34 -0
  7. package/dist/components/badge.css +116 -0
  8. package/dist/components/button.css +115 -0
  9. package/dist/components/card.css +38 -0
  10. package/dist/components/checkbox.css +89 -0
  11. package/dist/components/form-field.css +28 -0
  12. package/dist/components/input.css +71 -0
  13. package/dist/components/menu.css +61 -0
  14. package/dist/components/radio-button.css +107 -0
  15. package/dist/components/segmented-control.css +74 -0
  16. package/dist/components/text-area.css +61 -0
  17. package/dist/components/tooltip.css +124 -0
  18. package/dist/components.css +765 -0
  19. package/dist/design-tokens.css +159 -0
  20. package/dist/design-tokens.d.ts +167 -0
  21. package/dist/design-tokens.js +1654 -0
  22. package/package.json +73 -0
  23. package/src/design-tokens/dtcg-tokens.json +504 -0
  24. package/src/font/Inter-Bold.woff2 +0 -0
  25. package/src/font/Inter-BoldItalic.woff2 +0 -0
  26. package/src/font/Inter-Italic.woff2 +0 -0
  27. package/src/font/Inter-Medium.woff2 +0 -0
  28. package/src/font/Inter-MediumItalic.woff2 +0 -0
  29. package/src/font/Inter-Regular.woff2 +0 -0
  30. package/src/font/Inter-SemiBold.woff2 +0 -0
  31. package/src/font/Inter-SemiBoldItalic.woff2 +0 -0
  32. package/src/font/inter.css +56 -0
  33. package/src/styles/all-no-reset-10pt.css +12 -0
  34. package/src/styles/all-no-reset.css +7 -0
  35. package/src/styles/all.css +8 -0
  36. package/src/styles/base.css +3 -0
  37. package/src/styles/components/avatar.css +11 -0
  38. package/src/styles/components/badge.css +39 -0
  39. package/src/styles/components/button.css +83 -0
  40. package/src/styles/components/card.css +19 -0
  41. package/src/styles/components/checkbox.css +66 -0
  42. package/src/styles/components/form-field.css +11 -0
  43. package/src/styles/components/input.css +40 -0
  44. package/src/styles/components/menu.css +28 -0
  45. package/src/styles/components/radio-button.css +44 -0
  46. package/src/styles/components/segmented-control.css +40 -0
  47. package/src/styles/components/text-area.css +27 -0
  48. package/src/styles/components/tooltip.css +92 -0
  49. package/src/styles/components.css +12 -0
  50. package/src/styles/tailwind.css +2 -0
  51. package/src/styles/theme.css +68 -0
@@ -0,0 +1,39 @@
1
+ .ga-badge {
2
+ @apply inline-block rounded-full align-baseline;
3
+
4
+ &.ga-badge--text {
5
+ @apply min-w-6 p-1 text-center text-sm leading-4 font-medium whitespace-nowrap;
6
+ }
7
+
8
+ &.ga-badge--dot {
9
+ @apply h-2 w-2;
10
+ }
11
+
12
+ &.ga-badge--default {
13
+ @apply bg-cyan-80 text-orange-10;
14
+ }
15
+
16
+ &.ga-badge--default-inverted {
17
+ @apply bg-orange-20 text-cyan-90;
18
+ }
19
+
20
+ &.ga-badge--information {
21
+ @apply bg-blue-40 text-cyan-90;
22
+ }
23
+
24
+ &.ga-badge--error {
25
+ @apply bg-red-40 text-cyan-90;
26
+ }
27
+
28
+ &.ga-badge--warning {
29
+ @apply bg-orange-40 text-cyan-90;
30
+ }
31
+
32
+ &.ga-badge--success {
33
+ @apply bg-green-40 text-cyan-90;
34
+ }
35
+
36
+ &.ga-badge--muted {
37
+ @apply text-cyan-70 ring-grey-40 bg-white ring-1 ring-inset;
38
+ }
39
+ }
@@ -0,0 +1,83 @@
1
+ .ga-button {
2
+ @apply text-md inline-flex h-10 cursor-pointer items-center justify-center gap-2 rounded px-4 align-middle leading-1 font-bold;
3
+
4
+ &:focus-visible {
5
+ @apply outline-2 outline-offset-2 outline-(--ga-color-border-focus);
6
+ }
7
+
8
+ &:disabled {
9
+ @apply cursor-not-allowed;
10
+ }
11
+
12
+ &.ga-button--primary {
13
+ @apply bg-(--ga-color-surface-action) text-(--ga-color-text-on-action);
14
+
15
+ &:hover {
16
+ @apply bg-(--ga-color-surface-action-hover);
17
+ }
18
+
19
+ &:active {
20
+ @apply bg-(--ga-color-primary-70);
21
+ }
22
+
23
+ &:disabled {
24
+ @apply bg-(--ga-color-surface-disabled) text-(--ga-color-text-disabled);
25
+ }
26
+ }
27
+
28
+ &.ga-button--secondary {
29
+ @apply border border-(--ga-color-border-action) bg-(--ga-color-surface-primary) text-(--ga-color-text-action);
30
+
31
+ &:hover {
32
+ @apply bg-(--ga-color-surface-action-hover-2);
33
+ }
34
+
35
+ &:active {
36
+ @apply bg-(--ga-color-surface-primary);
37
+ }
38
+
39
+ &:disabled {
40
+ @apply border-(--ga-color-border-disabled) bg-(--ga-color-surace-page) text-(--ga-color-text-disabled);
41
+ }
42
+ }
43
+
44
+ &.ga-button--ghost {
45
+ @apply bg-transparent text-(--ga-color-text-action);
46
+
47
+ &:hover {
48
+ @apply bg-(--ga-color-utility-teal-light);
49
+ }
50
+
51
+ &:active {
52
+ @apply bg-transparent;
53
+ }
54
+
55
+ &:disabled {
56
+ @apply bg-transparent text-(--ga-color-text-disabled);
57
+ }
58
+ }
59
+
60
+ &.ga-button--transparent {
61
+ @apply border border-(--ga-color-border-action) bg-transparent text-(--ga-color-text-action);
62
+
63
+ &:hover {
64
+ @apply bg-(--ga-color-utility-teal-light);
65
+ }
66
+
67
+ &:focus-visible {
68
+ @apply border-(--ga-color-border-action);
69
+ }
70
+
71
+ &:active {
72
+ @apply bg-transparent;
73
+ }
74
+
75
+ &:disabled {
76
+ @apply border-(--ga-color-border-disabled) bg-transparent text-(--ga-color-text-disabled);
77
+ }
78
+ }
79
+
80
+ &.ga-button--icon-only {
81
+ @apply w-10 px-0;
82
+ }
83
+ }
@@ -0,0 +1,19 @@
1
+ .ga-card {
2
+ @apply text-md rounded border border-(--ga-color-border-primary) bg-white p-4;
3
+
4
+ &.ga-card--selectable {
5
+ @apply cursor-pointer;
6
+
7
+ &:hover {
8
+ @apply border-(--ga-color-border-action-hover) bg-(--ga-color-surface-action-hover-2);
9
+ }
10
+
11
+ &:focus-visible {
12
+ @apply outline-2 outline-offset-2 outline-(--ga-color-border-focus);
13
+ }
14
+ }
15
+
16
+ &.ga-card--disabled {
17
+ @apply border-(--ga-color-border-disabled) bg-(--ga-color-surface-disabled) text-(--ga-color-text-disabled);
18
+ }
19
+ }
@@ -0,0 +1,66 @@
1
+ .ga-checkbox {
2
+ @apply relative inline-flex gap-2;
3
+
4
+ .ga-checkbox__native {
5
+ @apply h-5 w-5 flex-shrink-0 opacity-0;
6
+
7
+ &:not(:disabled) {
8
+ @apply cursor-pointer;
9
+ }
10
+ }
11
+
12
+ .ga-checkbox__marker {
13
+ @apply pointer-events-none absolute top-0 left-0 h-5 w-5 rounded border-2 border-(--ga-color-border-action) text-white;
14
+
15
+ .ga-checkbox__marker__indicator-checked,
16
+ .ga-checkbox__marker__indicator-indeterminate {
17
+ @apply hidden;
18
+ }
19
+ }
20
+
21
+ .ga-checkbox__native:focus-visible ~ .ga-checkbox__marker {
22
+ @apply outline-2 outline-offset-2 outline-(--ga-color-border-focus);
23
+ }
24
+
25
+ .ga-checkbox__native:not(:disabled):hover ~ .ga-checkbox__marker {
26
+ @apply border-(--ga-color-border-action-hover) bg-(--ga-color-surface-action-hover-2);
27
+ }
28
+
29
+ .ga-checkbox__native:checked ~ .ga-checkbox__marker {
30
+ @apply bg-(--ga-color-surface-action);
31
+
32
+ .ga-checkbox__marker__indicator-checked {
33
+ @apply block;
34
+ }
35
+ }
36
+
37
+ .ga-checkbox__native:indeterminate ~ .ga-checkbox__marker {
38
+ @apply bg-(--ga-color-surface-action);
39
+
40
+ .ga-checkbox__marker__indicator-indeterminate {
41
+ @apply block;
42
+ }
43
+ }
44
+
45
+ .ga-checkbox__native:not(:disabled):checked:hover ~ .ga-checkbox__marker,
46
+ .ga-checkbox__native:not(:disabled):indeterminate:hover
47
+ ~ .ga-checkbox__marker {
48
+ @apply bg-(--ga-color-surface-action-hover);
49
+ }
50
+
51
+ .ga-checkbox__native:disabled ~ .ga-checkbox__marker {
52
+ @apply border-(--ga-color-border-disabled) bg-(--ga-color-surface-disabled) text-(--ga-color-text-disabled);
53
+ }
54
+
55
+ &.ga-checkbox--invalid .ga-checkbox__marker {
56
+ @apply border-(--ga-color-border-error) bg-(--ga-color-surface-error) text-(--ga-color-border-error);
57
+ }
58
+
59
+ .ga-checkbox__label {
60
+ @apply text-md min-h-5 leading-5;
61
+
62
+ &:empty {
63
+ @apply hidden;
64
+ }
65
+ }
66
+ }
@@ -0,0 +1,11 @@
1
+ .ga-form-field {
2
+ @apply flex flex-col gap-2;
3
+
4
+ .ga-form-field__label {
5
+ @apply text-md px-1 leading-5 font-medium;
6
+ }
7
+
8
+ .ga-form-field__info {
9
+ @apply flex items-center gap-1 text-xs;
10
+ }
11
+ }
@@ -0,0 +1,40 @@
1
+ .ga-input {
2
+ @apply text-md flex h-10 w-50 flex-row items-center gap-2 rounded border border-(--ga-color-border-primary) bg-(--ga-color-bg-primary) px-3 py-2;
3
+
4
+ &:has(input:hover),
5
+ &:is(input:hover) {
6
+ @apply border-(--ga-color-border-action-hover);
7
+
8
+ &:has(input:not(:placeholder-shown)),
9
+ &:is(input:not(:placeholder-shown)) {
10
+ @apply bg-(--ga-color-surface-action-hover-2);
11
+ }
12
+ }
13
+
14
+ &:has(input:disabled),
15
+ &:is(input:disabled) {
16
+ @apply border-(--ga-color-border-primary) bg-(--ga-color-surface-disabled) text-(--ga-color-text-disable-selected);
17
+ }
18
+
19
+ &:has(input:focus),
20
+ &:is(input:focus) {
21
+ @apply border-(--ga-color-border-focus) outline-1 outline-(--ga-color-border-focus);
22
+ }
23
+
24
+ &.ga-input--invalid {
25
+ @apply border-(--ga-color-border-error) outline outline-(--ga-color-border-error);
26
+
27
+ &:has(input:not(:placeholder-shown)),
28
+ &:is(input:not(:placeholder-shown)) {
29
+ @apply bg-(--ga-color-surface-error);
30
+ }
31
+ }
32
+
33
+ input {
34
+ @apply h-6 w-full min-w-0 leading-6 outline-none;
35
+ }
36
+
37
+ &:is(input) {
38
+ @apply min-w-0 leading-6;
39
+ }
40
+ }
@@ -0,0 +1,28 @@
1
+ .ga-menu {
2
+ @apply border-neutral-30 flex min-w-36 flex-col items-stretch rounded border bg-white;
3
+
4
+ .ga-menu__item {
5
+ @apply text-cyan-80 text-md border-b-neutral-30 h-10 cursor-pointer border-b px-4 py-2 text-left font-medium;
6
+
7
+ &:first-child {
8
+ @apply rounded-t;
9
+ }
10
+
11
+ &:last-child {
12
+ @apply rounded-b border-b-0;
13
+ }
14
+
15
+ &:hover {
16
+ @apply bg-teal-10;
17
+ }
18
+
19
+ &:active {
20
+ @apply bg-cyan-80 text-orange-10;
21
+ }
22
+ }
23
+
24
+ .ga-menu__separator {
25
+ /* TODO: fix hard-coded color value into token */
26
+ @apply px-3 pt-3 pb-2 text-sm font-semibold text-[#6F7687];
27
+ }
28
+ }
@@ -0,0 +1,44 @@
1
+ .ga-radio-button {
2
+ @apply relative inline-flex cursor-pointer gap-2;
3
+
4
+ .ga-radio-button__native {
5
+ @apply h-5 w-5 flex-shrink-0 cursor-pointer opacity-0;
6
+
7
+ &:disabled {
8
+ @apply cursor-default;
9
+ }
10
+ }
11
+
12
+ .ga-radio-button__marker {
13
+ @apply pointer-events-none absolute top-0 left-0 h-5 w-5 rounded-full border-2 border-(--ga-color-border-action) text-white;
14
+ }
15
+
16
+ .ga-radio-button__native:focus-visible ~ .ga-radio-button__marker {
17
+ @apply outline-2 outline-offset-2 outline-(--ga-color-border-focus);
18
+ }
19
+
20
+ .ga-radio-button__native:not(:disabled):hover ~ .ga-radio-button__marker {
21
+ @apply border-(--ga-color-border-action-hover) bg-(--ga-color-surface-action-hover-2);
22
+ }
23
+
24
+ .ga-radio-button__native:checked ~ .ga-radio-button__marker {
25
+ @apply bg-(--ga-color-surface-action);
26
+
27
+ &::after {
28
+ @apply absolute top-1/2 left-1/2 block h-2 w-2 -translate-x-1/2 -translate-y-1/2 rounded-full bg-white content-[''];
29
+ }
30
+ }
31
+
32
+ .ga-radio-button__native:not(:disabled):checked:hover
33
+ ~ .ga-radio-button__marker {
34
+ @apply bg-(--ga-color-surface-action-hover);
35
+ }
36
+
37
+ .ga-radio-button__native:disabled ~ .ga-radio-button__marker {
38
+ @apply border-(--ga-color-border-disabled) bg-(--ga-color-surface-disabled) text-(--ga-color-text-disabled);
39
+ }
40
+
41
+ .ga-radio-button__label {
42
+ @apply text-md min-h-4 leading-5;
43
+ }
44
+ }
@@ -0,0 +1,40 @@
1
+ .ga-segmented-control {
2
+ @apply text-md inline-flex h-10 items-center justify-center align-middle;
3
+
4
+ .ga-segmented-control__button {
5
+ @apply text-cyan-80 border-neutral-30 inline-flex h-10 items-center justify-center gap-2 border-t border-b border-l bg-white px-4 align-middle leading-1 font-medium;
6
+
7
+ &:first-of-type {
8
+ @apply rounded-l;
9
+ }
10
+
11
+ &:last-of-type {
12
+ @apply rounded-r border-r;
13
+ }
14
+
15
+ &.ga-segmented-control__button--selected {
16
+ @apply bg-cyan-80 text-orange-10 font-semibold;
17
+ }
18
+
19
+ &:not(
20
+ .ga-segmented-control__button--selected,
21
+ .ga-segmented-control__button--disabled,
22
+ :disabled
23
+ ) {
24
+ @apply cursor-pointer;
25
+
26
+ &:hover {
27
+ @apply bg-(--ga-color-surface-action-hover-2);
28
+ }
29
+
30
+ &:active {
31
+ @apply bg-white;
32
+ }
33
+ }
34
+
35
+ &.ga-segmented-control__button--disabled,
36
+ &:disabled {
37
+ @apply bg-neutral-10 border-neutral-30 text-grey-40;
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,27 @@
1
+ .ga-text-area {
2
+ @apply text-md flex w-50 flex-row items-center gap-2 rounded border border-(--ga-color-border-primary) bg-(--ga-color-bg-primary);
3
+
4
+ &:has(textarea:hover) {
5
+ @apply border-(--ga-color-border-action-hover);
6
+ }
7
+
8
+ &:has(textarea:disabled) {
9
+ @apply border-(--ga-color-border-primary) bg-(--ga-color-surface-disabled) text-(--ga-color-text-disable-selected);
10
+ }
11
+
12
+ &:has(textarea:focus) {
13
+ @apply border-(--ga-color-border-focus) outline-1 outline-(--ga-color-border-focus);
14
+ }
15
+
16
+ &.ga-text-area--invalid {
17
+ @apply border-(--ga-color-border-error) outline outline-(--ga-color-border-error);
18
+
19
+ &:has(textarea:not(:placeholder-shown)) {
20
+ @apply bg-(--ga-color-surface-error);
21
+ }
22
+ }
23
+
24
+ textarea {
25
+ @apply w-full min-w-0 px-3 py-2 leading-6 outline-none;
26
+ }
27
+ }
@@ -0,0 +1,92 @@
1
+ .ga-tooltip {
2
+ @apply text-md relative max-w-100 rounded bg-(--ga-color-surface-action-hover) p-2 text-(--ga-color-text-on-action);
3
+
4
+ &.ga-tooltip--top-start,
5
+ &.ga-tooltip--top-center,
6
+ &.ga-tooltip--top-end,
7
+ &.ga-tooltip--bottom-start,
8
+ &.ga-tooltip--bottom-center,
9
+ &.ga-tooltip--bottom-end,
10
+ &.ga-tooltip--left-start,
11
+ &.ga-tooltip--left-center,
12
+ &.ga-tooltip--left-end,
13
+ &.ga-tooltip--right-start,
14
+ &.ga-tooltip--right-center,
15
+ &.ga-tooltip--right-end {
16
+ @apply before:absolute before:content-[''];
17
+ }
18
+
19
+ &.ga-tooltip--top-start,
20
+ &.ga-tooltip--top-center,
21
+ &.ga-tooltip--top-end {
22
+ @apply mb-2;
23
+ }
24
+
25
+ &.ga-tooltip--bottom-start,
26
+ &.ga-tooltip--bottom-center,
27
+ &.ga-tooltip--bottom-end {
28
+ @apply mt-2;
29
+ }
30
+
31
+ &.ga-tooltip--left-start,
32
+ &.ga-tooltip--left-center,
33
+ &.ga-tooltip--left-end {
34
+ @apply mr-2;
35
+ }
36
+
37
+ &.ga-tooltip--right-start,
38
+ &.ga-tooltip--right-center,
39
+ &.ga-tooltip--right-end {
40
+ @apply ml-2;
41
+ }
42
+
43
+ &.ga-tooltip--top-start::before,
44
+ &.ga-tooltip--top-center::before,
45
+ &.ga-tooltip--top-end::before {
46
+ @apply -bottom-2 border-x-8 border-t-8 border-x-transparent border-t-(--ga-color-surface-action-hover);
47
+ }
48
+ &.ga-tooltip--bottom-start::before,
49
+ &.ga-tooltip--bottom-center::before,
50
+ &.ga-tooltip--bottom-end::before {
51
+ @apply -top-2 border-x-8 border-b-8 border-x-transparent border-b-(--ga-color-surface-action-hover);
52
+ }
53
+ &.ga-tooltip--top-start::before,
54
+ &.ga-tooltip--bottom-start::before {
55
+ @apply left-4;
56
+ }
57
+ &.ga-tooltip--top-center::before,
58
+ &.ga-tooltip--bottom-center::before {
59
+ @apply left-1/2 -translate-x-1/2;
60
+ }
61
+ &.ga-tooltip--top-end::before,
62
+ &.ga-tooltip--bottom-end::before {
63
+ @apply right-4;
64
+ }
65
+
66
+ &.ga-tooltip--left-start::before,
67
+ &.ga-tooltip--left-center::before,
68
+ &.ga-tooltip--left-end::before {
69
+ @apply -right-2 border-y-8 border-l-8 border-y-transparent border-l-(--ga-color-surface-action-hover);
70
+ }
71
+ &.ga-tooltip--right-start::before,
72
+ &.ga-tooltip--right-center::before,
73
+ &.ga-tooltip--right-end::before {
74
+ @apply -left-2 border-y-8 border-r-8 border-y-transparent border-r-(--ga-color-surface-action-hover);
75
+ }
76
+ &.ga-tooltip--left-start::before,
77
+ &.ga-tooltip--right-start::before {
78
+ @apply top-4;
79
+ }
80
+ &.ga-tooltip--left-center::before,
81
+ &.ga-tooltip--right-center::before {
82
+ @apply top-1/2 -translate-y-1/2;
83
+ }
84
+ &.ga-tooltip--left-end::before,
85
+ &.ga-tooltip--right-end::before {
86
+ @apply bottom-4;
87
+ }
88
+
89
+ .ga-tooltip__title {
90
+ @apply font-semibold;
91
+ }
92
+ }
@@ -0,0 +1,12 @@
1
+ @import './components/avatar.css';
2
+ @import './components/badge.css';
3
+ @import './components/button.css';
4
+ @import './components/card.css';
5
+ @import './components/checkbox.css';
6
+ @import './components/form-field.css';
7
+ @import './components/input.css';
8
+ @import './components/menu.css';
9
+ @import './components/radio-button.css';
10
+ @import './components/segmented-control.css';
11
+ @import './components/text-area.css';
12
+ @import './components/tooltip.css';
@@ -0,0 +1,2 @@
1
+ @import './all.css';
2
+ @import 'tailwindcss/utilities.css' layer(utilities);
@@ -0,0 +1,68 @@
1
+ @theme inline {
2
+ --color-cyan-60: var(--ga-color-cyan-60);
3
+ --color-cyan-70: var(--ga-color-cyan-70);
4
+ --color-cyan-80: var(--ga-color-cyan-80);
5
+ --color-cyan-90: var(--ga-color-cyan-90);
6
+ --color-blue-10: var(--ga-color-blue-10);
7
+ --color-blue-40: var(--ga-color-blue-40);
8
+ --color-green-10: var(--ga-color-green-10);
9
+ --color-green-40: var(--ga-color-green-40);
10
+ --color-grey-10: var(--ga-color-grey-10);
11
+ --color-grey-40: var(--ga-color-grey-40);
12
+ --color-indigo-10: var(--ga-color-indigo-10);
13
+ --color-indigo-40: var(--ga-color-indigo-40);
14
+ --color-lime-10: var(--ga-color-lime-10);
15
+ --color-lime-40: var(--ga-color-lime-40);
16
+ --color-neutral: var(--ga-color-neutral);
17
+ --color-neutral-10: var(--ga-color-neutral-10);
18
+ --color-neutral-20: var(--ga-color-neutral-20);
19
+ --color-neutral-30: var(--ga-color-neutral-30);
20
+ --color-orange-10: var(--ga-color-orange-10);
21
+ --color-orange-20: var(--ga-color-orange-20);
22
+ --color-orange-30: var(--ga-color-orange-30);
23
+ --color-orange-40: var(--ga-color-orange-40);
24
+ --color-pink-10: var(--ga-color-pink-10);
25
+ --color-pink-40: var(--ga-color-pink-40);
26
+ --color-purple-10: var(--ga-color-purple-10);
27
+ --color-purple-40: var(--ga-color-purple-40);
28
+ --color-red-10: var(--ga-color-red-10);
29
+ --color-red-40: var(--ga-color-red-40);
30
+ --color-rose-10: var(--ga-color-rose-10);
31
+ --color-rose-40: var(--ga-color-rose-40);
32
+ --color-teal-10: var(--ga-color-teal-10);
33
+ --color-teal-20: var(--ga-color-teal-20);
34
+ --color-teal-30: var(--ga-color-teal-30);
35
+ --color-teal-40: var(--ga-color-teal-40);
36
+ --color-teal-50: var(--ga-color-teal-50);
37
+ --color-teal-60: var(--ga-color-teal-60);
38
+ --color-teal-70: var(--ga-color-teal-70);
39
+ --color-teal-80: var(--ga-color-teal-80);
40
+ --color-teal-90: var(--ga-color-teal-90);
41
+ --color-teal-100: var(--ga-color-teal-100);
42
+ --color-yellow-10: var(--ga-color-yellow-10);
43
+ --color-yellow-40: var(--ga-color-yellow-40);
44
+ --color-black: #000;
45
+ --color-white: #fff;
46
+
47
+ --font-inter: Inter, ui-sans-serif, system-ui, sans-serif;
48
+ --font-inter--font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
49
+ --default-font-family: var(--font-inter);
50
+
51
+ --text-xs: var(--ga-size-font-xs);
52
+ --text-sm: var(--ga-size-font-sm);
53
+ --text-md: var(--ga-size-font-md);
54
+ --text-lg: var(--ga-size-font-lg);
55
+ --text-xl: var(--ga-size-font-xl);
56
+ --text-2xl: var(--ga-size-font-2xl);
57
+ --text-3xl: var(--ga-size-font-3xl);
58
+
59
+ --font-weight-normal: 400;
60
+ --font-weight-medium: 500;
61
+ --font-weight-semibold: 600;
62
+ --font-weight-bold: 700;
63
+
64
+ --radius: var(--ga-radius);
65
+ --radius-sharp: var(--ga-radius-sharp);
66
+
67
+ --spacing: 0.25rem;
68
+ }