legacy.css 0.1.0

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.
@@ -0,0 +1,23 @@
1
+ .text-right {
2
+ text-align: right;
3
+ }
4
+
5
+ .text-center {
6
+ text-align: center;
7
+ }
8
+
9
+ .muted {
10
+ color: var(--legacy-muted);
11
+ }
12
+
13
+ .sr-only {
14
+ clip: rect(0, 0, 0, 0);
15
+ border: 0;
16
+ height: 1px;
17
+ margin: -1px;
18
+ overflow: hidden;
19
+ padding: 0;
20
+ position: absolute;
21
+ white-space: nowrap;
22
+ width: 1px;
23
+ }
@@ -0,0 +1,83 @@
1
+ :root {
2
+ color-scheme: light;
3
+
4
+ --legacy-font-sans: verdana, arial, helvetica, sans-serif;
5
+ --legacy-font-mono: "Courier New", courier, monospace;
6
+ --legacy-font-size: 12px;
7
+ --legacy-page-bg: #d9d9d9;
8
+ --legacy-surface: #f4f4f4;
9
+ --legacy-surface-raised: #fff;
10
+ --legacy-surface-alt: #f7f7f7;
11
+ --legacy-border: #9a9a9a;
12
+ --legacy-border-dark: #666;
13
+ --legacy-text: #1f1f1f;
14
+ --legacy-muted: #555;
15
+ --legacy-link: #0645ad;
16
+ --legacy-link-visited: #551a8b;
17
+ --legacy-primary: #0b4f8a;
18
+ --legacy-primary-dark: #07355d;
19
+ --legacy-primary-contrast: #fff;
20
+ --legacy-header-bg: #d6e3f0;
21
+ --legacy-header-hover-bg: #e8eef5;
22
+ --legacy-focus: #f4c430;
23
+ --legacy-danger-bg: #f8d7da;
24
+ --legacy-danger-border: #b94a48;
25
+ --legacy-warning-bg: #fff3cd;
26
+ --legacy-warning-border: #c79c00;
27
+ --legacy-success-bg: #dff0d8;
28
+ --legacy-success-border: #468847;
29
+ --legacy-info-bg: #d9edf7;
30
+ --legacy-info-border: #3a87ad;
31
+ --legacy-radius: 2px;
32
+ --legacy-control-bg: #fff;
33
+ --legacy-button-bg-top: #fdfdfd;
34
+ --legacy-button-bg-bottom: #d5d5d5;
35
+ --legacy-button-hover-bottom: #c6d3df;
36
+ --legacy-button-active-bg: #c8c8c8;
37
+ --legacy-button-border: #7f7f7f;
38
+ --legacy-space-1: 0.25rem;
39
+ --legacy-space-2: 0.5rem;
40
+ --legacy-space-3: 0.75rem;
41
+ --legacy-space-4: 1rem;
42
+ --legacy-space-6: 1.5rem;
43
+ --legacy-line-height: 1.45;
44
+ }
45
+
46
+ [data-legacy-theme="light"] {
47
+ color-scheme: light;
48
+ }
49
+
50
+ [data-legacy-theme="dark"] {
51
+ color-scheme: dark;
52
+
53
+ --legacy-page-bg: #151515;
54
+ --legacy-surface: #242424;
55
+ --legacy-surface-raised: #303030;
56
+ --legacy-surface-alt: #262626;
57
+ --legacy-border: #696969;
58
+ --legacy-border-dark: #8a8a8a;
59
+ --legacy-text: #efefef;
60
+ --legacy-muted: #b8b8b8;
61
+ --legacy-link: #8ab4f8;
62
+ --legacy-link-visited: #c7a8ff;
63
+ --legacy-primary: #5f8fbd;
64
+ --legacy-primary-dark: #b7d6f2;
65
+ --legacy-primary-contrast: #101010;
66
+ --legacy-header-bg: #21384b;
67
+ --legacy-header-hover-bg: #2d4559;
68
+ --legacy-focus: #f4c430;
69
+ --legacy-danger-bg: #4a2327;
70
+ --legacy-danger-border: #d78387;
71
+ --legacy-warning-bg: #4a3b15;
72
+ --legacy-warning-border: #e1bd4c;
73
+ --legacy-success-bg: #233f28;
74
+ --legacy-success-border: #82ba7c;
75
+ --legacy-info-bg: #203c4a;
76
+ --legacy-info-border: #82b9d0;
77
+ --legacy-control-bg: #1f1f1f;
78
+ --legacy-button-bg-top: #424242;
79
+ --legacy-button-bg-bottom: #2b2b2b;
80
+ --legacy-button-hover-bottom: #38495a;
81
+ --legacy-button-active-bg: #1f1f1f;
82
+ --legacy-button-border: #8a8a8a;
83
+ }