@@ -5,8 +5,7 @@ export const styles = String.raw`
55 :root, :host {
66 --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
77 "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8- --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9- "Courier New", monospace;
8+ --font-mono: "Roboto", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
109 --color-violet-600: oklch(0.541 0.281 293.009);
1110 --color-black: #000;
1211 --color-white: #fff;
@@ -19,14 +18,19 @@ export const styles = String.raw`
1918 --text-base--line-height: calc(1.5 / 1);
2019 --text-xl: 1.25rem;
2120 --text-xl--line-height: calc(1.75 / 1.25);
22- --text-3xl: 1.875rem;
23- --text-3xl--line-height: calc(2.25 / 1.875);
21+ --text-2xl: 1.5rem;
22+ --text-2xl--line-height: calc(2 / 1.5);
23+ --text-4xl: 2.25rem;
24+ --text-4xl--line-height: calc(2.5 / 2.25);
25+ --text-6xl: 3.75rem;
26+ --text-6xl--line-height: 1;
2427 --font-weight-normal: 400;
2528 --font-weight-medium: 500;
2629 --font-weight-semibold: 600;
2730 --font-weight-bold: 700;
2831 --tracking-normal: 0em;
2932 --tracking-wide: 0.025em;
33+ --tracking-widest: 0.1em;
3034 --radius-xs: 0.125rem;
3135 --radius-sm: 0.25rem;
3236 --radius-md: 0.375rem;
@@ -420,9 +424,6 @@ export const styles = String.raw`
420424 .h-16 {
421425 height: calc(var(--spacing) * 16);
422426 }
423- .h-20 {
424- height: calc(var(--spacing) * 20);
425- }
426427 .h-24 {
427428 height: calc(var(--spacing) * 24);
428429 }
@@ -507,15 +508,9 @@ export const styles = String.raw`
507508 .w-13 {
508509 width: calc(var(--spacing) * 13);
509510 }
510- .w-14 {
511- width: calc(var(--spacing) * 14);
512- }
513511 .w-16 {
514512 width: calc(var(--spacing) * 16);
515513 }
516- .w-20 {
517- width: calc(var(--spacing) * 20);
518- }
519514 .w-24 {
520515 width: calc(var(--spacing) * 24);
521516 }
@@ -691,6 +686,9 @@ export const styles = String.raw`
691686 .overflow-scroll {
692687 overflow: scroll;
693688 }
689+ .overflow-visible {
690+ overflow: visible;
691+ }
694692 .overflow-x-auto {
695693 overflow-x: auto;
696694 }
@@ -766,9 +764,9 @@ export const styles = String.raw`
766764 border-style: var(--tw-border-style);
767765 border-width: 2px;
768766 }
769- .border-t -2 {
770- border-top -style: var(--tw-border-style);
771- border-top -width: 2px;
767+ .border-b -2 {
768+ border-bottom -style: var(--tw-border-style);
769+ border-bottom -width: 2px;
772770 }
773771 .border-dashed {
774772 --tw-border-style: dashed;
@@ -794,11 +792,11 @@ export const styles = String.raw`
794792 .border-violet-600 {
795793 border-color: var(--color-violet-600);
796794 }
797- .border-t -primary {
798- border-top -color: var(--seq-color-primary);
795+ .border-b -primary {
796+ border-bottom -color: var(--seq-color-primary);
799797 }
800- .border-t -transparent {
801- border-top -color: transparent;
798+ .border-b -transparent {
799+ border-bottom -color: transparent;
802800 }
803801 .bg-background-backdrop {
804802 background-color: var(--seq-color-background-backdrop);
@@ -1005,14 +1003,22 @@ export const styles = String.raw`
10051003 text-align: center;
10061004 }
10071005 .font-body {
1008- font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1006+ font-family: " Inter" , ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
10091007 }
10101008 .font-mono {
1011- font-family: var(--font-mono) ;
1009+ font-family: "Roboto", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace ;
10121010 }
1013- .text-3xl {
1014- font-size: var(--text-3xl);
1015- line-height: var(--tw-leading, var(--text-3xl--line-height));
1011+ .text-2xl {
1012+ font-size: var(--text-2xl);
1013+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1014+ }
1015+ .text-4xl {
1016+ font-size: var(--text-4xl);
1017+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1018+ }
1019+ .text-6xl {
1020+ font-size: var(--text-6xl);
1021+ line-height: var(--tw-leading, var(--text-6xl--line-height));
10161022 }
10171023 .text-base {
10181024 font-size: var(--text-base);
@@ -1072,9 +1078,13 @@ export const styles = String.raw`
10721078 --tw-leading: calc(var(--spacing) * 8);
10731079 line-height: calc(var(--spacing) * 8);
10741080 }
1075- .leading-9 {
1076- --tw-leading: calc(var(--spacing) * 9);
1077- line-height: calc(var(--spacing) * 9);
1081+ .leading-10 {
1082+ --tw-leading: calc(var(--spacing) * 10);
1083+ line-height: calc(var(--spacing) * 10);
1084+ }
1085+ .leading-15 {
1086+ --tw-leading: calc(var(--spacing) * 15);
1087+ line-height: calc(var(--spacing) * 15);
10781088 }
10791089 .leading-\[inherit\] {
10801090 --tw-leading: inherit;
@@ -1108,6 +1118,10 @@ export const styles = String.raw`
11081118 --tw-tracking: var(--tracking-wide);
11091119 letter-spacing: var(--tracking-wide);
11101120 }
1121+ .tracking-widest {
1122+ --tw-tracking: var(--tracking-widest);
1123+ letter-spacing: var(--tracking-widest);
1124+ }
11111125 .text-ellipsis {
11121126 text-overflow: ellipsis;
11131127 }
@@ -1856,7 +1870,7 @@ export const styles = String.raw`
18561870 --seq-color-inverse: rgba(0, 0, 0, 1);
18571871 --seq-color-background-primary: rgba(0, 0, 0, 1);
18581872 --seq-color-background-secondary: rgba(255, 255, 255, 0.1);
1859- --seq-color-background-contrast: rgba(255, 255, 255 , 0.5);
1873+ --seq-color-background-contrast: rgba(0, 0, 0 , 0.5);
18601874 --seq-color-background-muted: rgba(255, 255, 255, 0.05);
18611875 --seq-color-background-control: rgba(255, 255, 255, 0.25);
18621876 --seq-color-background-inverse: rgba(255, 255, 255, 1);
@@ -1906,7 +1920,7 @@ export const styles = String.raw`
19061920 --seq-color-background-contrast: rgba(244, 244, 244, 0.5);
19071921 --seq-color-background-muted: rgba(0, 0, 0, 0.05);
19081922 --seq-color-background-control: rgba(0, 0, 0, 0.25);
1909- --seq-color-background-inverse: # rgba(0, 0, 0, 1);
1923+ --seq-color-background-inverse: rgba(0, 0, 0, 1);
19101924 --seq-color-background-backdrop: rgba(221, 221, 221, 0.9);
19111925 --seq-color-background-overlay: rgba(244, 244, 244, 0.7);
19121926 --seq-color-background-raised: rgba(192, 192, 192, 0.7);
0 commit comments