turbo-themes 0.14.0 → 0.15.1

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.
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #403d52;
41
41
  --turbo-table-cell-bg: #191724;
42
42
  --turbo-table-header-fg: #e0def4;
43
+ --turbo-card-bg: #1f1d2e;
44
+ --turbo-card-border: #403d52;
45
+ --turbo-card-header-bg: #26233a;
46
+ --turbo-card-footer-bg: #1f1d2e;
47
+ --turbo-message-bg: #1f1d2e;
48
+ --turbo-message-header-bg: #26233a;
49
+ --turbo-message-border: #403d52;
50
+ --turbo-message-body-fg: #e0def4;
51
+ --turbo-panel-bg: #1f1d2e;
52
+ --turbo-panel-header-bg: #26233a;
53
+ --turbo-panel-header-fg: #e0def4;
54
+ --turbo-panel-border: #403d52;
55
+ --turbo-panel-block-bg: #1f1d2e;
56
+ --turbo-panel-block-hover-bg: #26233a;
57
+ --turbo-panel-block-active-bg: #26233a;
58
+ --turbo-box-bg: #1f1d2e;
59
+ --turbo-box-border: #403d52;
60
+ --turbo-notification-bg: #1f1d2e;
61
+ --turbo-notification-border: #403d52;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #1f1d2e;
64
+ --turbo-modal-header-bg: #26233a;
65
+ --turbo-modal-footer-bg: #1f1d2e;
66
+ --turbo-dropdown-bg: #1f1d2e;
67
+ --turbo-dropdown-item-hover: #26233a;
68
+ --turbo-dropdown-border: #403d52;
69
+ --turbo-tabs-border: #403d52;
70
+ --turbo-tabs-link-bg: #1f1d2e;
71
+ --turbo-tabs-link-active-bg: #191724;
72
+ --turbo-tabs-link-hover-bg: #26233a;
43
73
  --turbo-syntax-fg: #e0def4;
44
74
  --turbo-syntax-bg: #26233a;
45
75
  --turbo-syntax-comment: #908caa;
@@ -0,0 +1,91 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
2
+ @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
3
+
4
+ [data-theme="solarized-dark"] {
5
+ --turbo-bg-base: #002b36;
6
+ --turbo-bg-surface: #073642;
7
+ --turbo-bg-overlay: #586e75;
8
+ --turbo-text-primary: #839496;
9
+ --turbo-text-secondary: #657b83;
10
+ --turbo-text-inverse: #002b36;
11
+ --turbo-brand-primary: #268bd2;
12
+ --turbo-state-info: #2aa198;
13
+ --turbo-state-success: #859900;
14
+ --turbo-state-warning: #b58900;
15
+ --turbo-state-danger: #dc322f;
16
+ --turbo-border-default: #586e75;
17
+ --turbo-accent-link: #268bd2;
18
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
19
+ --turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
20
+ --turbo-heading-h1: #268bd2;
21
+ --turbo-heading-h2: #2aa198;
22
+ --turbo-heading-h3: #859900;
23
+ --turbo-heading-h4: #b58900;
24
+ --turbo-heading-h5: #cb4b16;
25
+ --turbo-heading-h6: #d33682;
26
+ --turbo-body-primary: #839496;
27
+ --turbo-body-secondary: #657b83;
28
+ --turbo-link-default: #268bd2;
29
+ --turbo-selection-fg: #fdf6e3;
30
+ --turbo-selection-bg: #586e75;
31
+ --turbo-blockquote-border: #657b83;
32
+ --turbo-blockquote-fg: #839496;
33
+ --turbo-blockquote-bg: #073642;
34
+ --turbo-code-inline-fg: #2aa198;
35
+ --turbo-code-inline-bg: #073642;
36
+ --turbo-code-block-fg: #93a1a1;
37
+ --turbo-code-block-bg: #073642;
38
+ --turbo-table-border: #586e75;
39
+ --turbo-table-stripe: #073642;
40
+ --turbo-table-thead-bg: #586e75;
41
+ --turbo-table-cell-bg: #002b36;
42
+ --turbo-table-header-fg: #839496;
43
+ --turbo-card-bg: #073642;
44
+ --turbo-card-border: #586e75;
45
+ --turbo-card-header-bg: #002b36;
46
+ --turbo-card-footer-bg: #073642;
47
+ --turbo-message-bg: #002b36;
48
+ --turbo-message-header-bg: #073642;
49
+ --turbo-message-border: #586e75;
50
+ --turbo-message-body-fg: #839496;
51
+ --turbo-panel-bg: #073642;
52
+ --turbo-panel-header-bg: #002b36;
53
+ --turbo-panel-header-fg: #93a1a1;
54
+ --turbo-panel-border: #586e75;
55
+ --turbo-panel-block-bg: #002b36;
56
+ --turbo-panel-block-hover-bg: #073642;
57
+ --turbo-panel-block-active-bg: #586e75;
58
+ --turbo-box-bg: #073642;
59
+ --turbo-box-border: #586e75;
60
+ --turbo-notification-bg: #002b36;
61
+ --turbo-notification-border: #586e75;
62
+ --turbo-modal-bg: rgba(0, 43, 54, 0.9);
63
+ --turbo-modal-card-bg: #073642;
64
+ --turbo-modal-header-bg: #002b36;
65
+ --turbo-modal-footer-bg: #073642;
66
+ --turbo-dropdown-bg: #073642;
67
+ --turbo-dropdown-item-hover: #586e75;
68
+ --turbo-dropdown-border: #586e75;
69
+ --turbo-tabs-border: #586e75;
70
+ --turbo-tabs-link-bg: #073642;
71
+ --turbo-tabs-link-active-bg: #002b36;
72
+ --turbo-tabs-link-hover-bg: #586e75;
73
+ --turbo-syntax-fg: #93a1a1;
74
+ --turbo-syntax-bg: #073642;
75
+ --turbo-syntax-comment: #657b83;
76
+ --turbo-syntax-keyword: #268bd2;
77
+ --turbo-syntax-string: #859900;
78
+ --turbo-syntax-number: #b58900;
79
+ --turbo-syntax-function: #2aa198;
80
+ --turbo-syntax-type: #268bd2;
81
+ --turbo-syntax-variable: #839496;
82
+ --turbo-syntax-operator: #657b83;
83
+ --turbo-syntax-punctuation: #657b83;
84
+ --turbo-syntax-tag: #dc322f;
85
+ --turbo-syntax-attribute: #2aa198;
86
+ --turbo-syntax-value: #859900;
87
+ --turbo-syntax-error: #dc322f;
88
+ --turbo-syntax-deleted: #dc322f;
89
+ --turbo-syntax-inserted: #859900;
90
+ color-scheme: dark;
91
+ }
@@ -0,0 +1,91 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
2
+ @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
3
+
4
+ [data-theme="solarized-light"] {
5
+ --turbo-bg-base: #fdf6e3;
6
+ --turbo-bg-surface: #eee8d5;
7
+ --turbo-bg-overlay: #93a1a1;
8
+ --turbo-text-primary: #586e75;
9
+ --turbo-text-secondary: #657b83;
10
+ --turbo-text-inverse: #fdf6e3;
11
+ --turbo-brand-primary: #268bd2;
12
+ --turbo-state-info: #2aa198;
13
+ --turbo-state-success: #859900;
14
+ --turbo-state-warning: #b58900;
15
+ --turbo-state-danger: #dc322f;
16
+ --turbo-border-default: #93a1a1;
17
+ --turbo-accent-link: #268bd2;
18
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
19
+ --turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
20
+ --turbo-heading-h1: #268bd2;
21
+ --turbo-heading-h2: #2aa198;
22
+ --turbo-heading-h3: #859900;
23
+ --turbo-heading-h4: #b58900;
24
+ --turbo-heading-h5: #cb4b16;
25
+ --turbo-heading-h6: #d33682;
26
+ --turbo-body-primary: #586e75;
27
+ --turbo-body-secondary: #657b83;
28
+ --turbo-link-default: #268bd2;
29
+ --turbo-selection-fg: #002b36;
30
+ --turbo-selection-bg: #93a1a1;
31
+ --turbo-blockquote-border: #93a1a1;
32
+ --turbo-blockquote-fg: #657b83;
33
+ --turbo-blockquote-bg: #eee8d5;
34
+ --turbo-code-inline-fg: #6c71c4;
35
+ --turbo-code-inline-bg: #eee8d5;
36
+ --turbo-code-block-fg: #073642;
37
+ --turbo-code-block-bg: #eee8d5;
38
+ --turbo-table-border: #93a1a1;
39
+ --turbo-table-stripe: #eee8d5;
40
+ --turbo-table-thead-bg: #eee8d5;
41
+ --turbo-table-cell-bg: #fdf6e3;
42
+ --turbo-table-header-fg: #586e75;
43
+ --turbo-card-bg: #fdf6e3;
44
+ --turbo-card-border: #93a1a1;
45
+ --turbo-card-header-bg: #eee8d5;
46
+ --turbo-card-footer-bg: #eee8d5;
47
+ --turbo-message-bg: #eee8d5;
48
+ --turbo-message-header-bg: #fdf6e3;
49
+ --turbo-message-border: #93a1a1;
50
+ --turbo-message-body-fg: #586e75;
51
+ --turbo-panel-bg: #fdf6e3;
52
+ --turbo-panel-header-bg: #eee8d5;
53
+ --turbo-panel-header-fg: #073642;
54
+ --turbo-panel-border: #93a1a1;
55
+ --turbo-panel-block-bg: #eee8d5;
56
+ --turbo-panel-block-hover-bg: #fdf6e3;
57
+ --turbo-panel-block-active-bg: #93a1a1;
58
+ --turbo-box-bg: #fdf6e3;
59
+ --turbo-box-border: #93a1a1;
60
+ --turbo-notification-bg: #eee8d5;
61
+ --turbo-notification-border: #93a1a1;
62
+ --turbo-modal-bg: rgba(0, 43, 54, 0.86);
63
+ --turbo-modal-card-bg: #fdf6e3;
64
+ --turbo-modal-header-bg: #eee8d5;
65
+ --turbo-modal-footer-bg: #eee8d5;
66
+ --turbo-dropdown-bg: #fdf6e3;
67
+ --turbo-dropdown-item-hover: #eee8d5;
68
+ --turbo-dropdown-border: #93a1a1;
69
+ --turbo-tabs-border: #93a1a1;
70
+ --turbo-tabs-link-bg: #eee8d5;
71
+ --turbo-tabs-link-active-bg: #fdf6e3;
72
+ --turbo-tabs-link-hover-bg: #93a1a1;
73
+ --turbo-syntax-fg: #073642;
74
+ --turbo-syntax-bg: #eee8d5;
75
+ --turbo-syntax-comment: #657b83;
76
+ --turbo-syntax-keyword: #268bd2;
77
+ --turbo-syntax-string: #859900;
78
+ --turbo-syntax-number: #b58900;
79
+ --turbo-syntax-function: #2aa198;
80
+ --turbo-syntax-type: #268bd2;
81
+ --turbo-syntax-variable: #586e75;
82
+ --turbo-syntax-operator: #657b83;
83
+ --turbo-syntax-punctuation: #657b83;
84
+ --turbo-syntax-tag: #dc322f;
85
+ --turbo-syntax-attribute: #2aa198;
86
+ --turbo-syntax-value: #859900;
87
+ --turbo-syntax-error: #dc322f;
88
+ --turbo-syntax-deleted: #dc322f;
89
+ --turbo-syntax-inserted: #859900;
90
+ color-scheme: light;
91
+ }
@@ -37,6 +37,36 @@
37
37
  --turbo-table-thead-bg: #45475a;
38
38
  --turbo-table-cell-bg: #1e1e2e;
39
39
  --turbo-table-header-fg: #cdd6f4;
40
+ --turbo-card-bg: #181825;
41
+ --turbo-card-border: #6c7086;
42
+ --turbo-card-header-bg: #11111b;
43
+ --turbo-card-footer-bg: #181825;
44
+ --turbo-message-bg: #181825;
45
+ --turbo-message-header-bg: #11111b;
46
+ --turbo-message-border: #6c7086;
47
+ --turbo-message-body-fg: #cdd6f4;
48
+ --turbo-panel-bg: #181825;
49
+ --turbo-panel-header-bg: #11111b;
50
+ --turbo-panel-header-fg: #cdd6f4;
51
+ --turbo-panel-border: #6c7086;
52
+ --turbo-panel-block-bg: #181825;
53
+ --turbo-panel-block-hover-bg: #11111b;
54
+ --turbo-panel-block-active-bg: #11111b;
55
+ --turbo-box-bg: #181825;
56
+ --turbo-box-border: #6c7086;
57
+ --turbo-notification-bg: #181825;
58
+ --turbo-notification-border: #6c7086;
59
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
60
+ --turbo-modal-card-bg: #181825;
61
+ --turbo-modal-header-bg: #11111b;
62
+ --turbo-modal-footer-bg: #181825;
63
+ --turbo-dropdown-bg: #181825;
64
+ --turbo-dropdown-item-hover: #11111b;
65
+ --turbo-dropdown-border: #6c7086;
66
+ --turbo-tabs-border: #6c7086;
67
+ --turbo-tabs-link-bg: #181825;
68
+ --turbo-tabs-link-active-bg: #1e1e2e;
69
+ --turbo-tabs-link-hover-bg: #11111b;
40
70
  --turbo-syntax-fg: #cdd6f4;
41
71
  --turbo-syntax-bg: #313244;
42
72
  --turbo-syntax-comment: #a6adc8;
Binary file
Binary file