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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c215353e51a39d8e54efc34e37391038b36dfc0a13c452ff4ad1281a60402f8
4
- data.tar.gz: f59e219a1fe7daf29e258340cd7f43a374e258acb1348c54efc579c37e57d8a2
3
+ metadata.gz: 5a0130c36b9e647f2e49a3d5eead4e017cedb473ab553fbc4f3b38a1989f99a3
4
+ data.tar.gz: 3ede178cd71dfc08da9b068edbb960f54d6b8ad989f9a97bbd36b7118a838ec7
5
5
  SHA512:
6
- metadata.gz: 401d3c95dd94afda74542a42f0f68fbc4be813f48128c47ecd6695dd41c69a01ba9c6277898666a0c4a36c598ebf4c3a27bd31599c36e1d6e55e681df61a059b
7
- data.tar.gz: be9ce92813b4a2753f35ba2c6c32bfec4f32dea5e30f82252b4395aa37ec3755bd2f1c0dd367e5ad3c3fc26c9675cb071d9e5935637a7cd40deef49935abdb49
6
+ metadata.gz: 91d6a1d1e51347f08d1ab1e39a301e257c2faa172a488ec3f5c51e5a6aa9cf0c4447a7a4de21965d3d91d5cfad1208d64cebee2da88750a3b2cfa3118b3bfe6f
7
+ data.tar.gz: 5c57e40b62c54987b1f46dc49dbb6ea7532c4d102f564690cf3cea4afd5cf21c20004f52c406f42037fe44d0c4c60c32893ed18ec33af5f394011fbbaa4cc4a9
data/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
10
10
 
11
11
  - TBD
12
12
 
13
+ ## [0.15.1] - 2026-02-06
14
+
15
+ ### 🐛 Fixed
16
+
17
+ - emit component CSS variables for all themes, not just those with components (#334)
18
+
19
+ ## [0.15.0] - 2026-02-06
20
+
21
+ ### ✨ Added
22
+
23
+ - add Solarized theme pack with light and dark variants (#333)
24
+
13
25
  ## [0.14.0] - 2026-02-05
14
26
 
15
27
  ### ✨ Added
@@ -0,0 +1,88 @@
1
+ /* Generated from solarized-dark.css */
2
+
3
+ [data-theme="solarized-dark"] {
4
+ --turbo-spacing-xs: 0.25rem; /* dimension */
5
+ --turbo-spacing-sm: 0.5rem; /* dimension */
6
+ --turbo-spacing-md: 1rem; /* dimension */
7
+ --turbo-spacing-lg: 1.5rem; /* dimension */
8
+ --turbo-spacing-xl: 2rem; /* dimension */
9
+ --turbo-elevation-none: none; /* shadow */
10
+ --turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
11
+ --turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
12
+ --turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
13
+ --turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
14
+ --turbo-animation-duration-fast: 150ms; /* duration */
15
+ --turbo-animation-duration-normal: 300ms; /* duration */
16
+ --turbo-animation-duration-slow: 500ms; /* duration */
17
+ --turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
18
+ --turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
19
+ --turbo-opacity-disabled: 0.5; /* number */
20
+ --turbo-opacity-hover: 0.8; /* number */
21
+ --turbo-opacity-pressed: 0.6; /* number */
22
+ --turbo-bg-base: #002b36; /* color */
23
+ --turbo-bg-surface: #073642; /* color */
24
+ --turbo-bg-overlay: #586e75; /* color */
25
+ --turbo-text-primary: #839496; /* color */
26
+ --turbo-text-secondary: #657b83; /* color */
27
+ --turbo-text-inverse: #002b36; /* color */
28
+ --turbo-brand-primary: #268bd2; /* color */
29
+ --turbo-state-info: #2aa198; /* color */
30
+ --turbo-state-success: #859900; /* color */
31
+ --turbo-state-warning: #b58900; /* color */
32
+ --turbo-state-danger: #dc322f; /* color */
33
+ --turbo-border-default: #586e75; /* color */
34
+ --turbo-accent-link: #268bd2; /* color */
35
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
36
+ --turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
37
+ --turbo-heading-h1: #268bd2; /* color */
38
+ --turbo-heading-h2: #2aa198; /* color */
39
+ --turbo-heading-h3: #859900; /* color */
40
+ --turbo-heading-h4: #b58900; /* color */
41
+ --turbo-heading-h5: #cb4b16; /* color */
42
+ --turbo-heading-h6: #d33682; /* color */
43
+ --turbo-body-primary: #839496; /* color */
44
+ --turbo-body-secondary: #657b83; /* color */
45
+ --turbo-link-default: #268bd2; /* color */
46
+ --turbo-selection-fg: #fdf6e3; /* color */
47
+ --turbo-selection-bg: #586e75; /* color */
48
+ --turbo-blockquote-border: #657b83; /* color */
49
+ --turbo-blockquote-fg: #839496; /* color */
50
+ --turbo-blockquote-bg: #073642; /* color */
51
+ --turbo-code-inline-fg: #2aa198; /* color */
52
+ --turbo-code-inline-bg: #073642; /* color */
53
+ --turbo-code-block-fg: #93a1a1; /* color */
54
+ --turbo-code-block-bg: #073642; /* color */
55
+ --turbo-table-border: #586e75; /* color */
56
+ --turbo-table-stripe: #073642; /* color */
57
+ --turbo-table-thead-bg: #586e75; /* color */
58
+ --turbo-components-card-bg: #073642; /* color */
59
+ --turbo-components-card-border: #586e75; /* color */
60
+ --turbo-components-card-header-bg: #002b36; /* color */
61
+ --turbo-components-card-footer-bg: #073642; /* color */
62
+ --turbo-components-message-bg: #002b36; /* color */
63
+ --turbo-components-message-header-bg: #073642; /* color */
64
+ --turbo-components-message-border: #586e75; /* color */
65
+ --turbo-components-message-body-fg: #839496; /* color */
66
+ --turbo-components-panel-bg: #073642; /* color */
67
+ --turbo-components-panel-header-bg: #002b36; /* color */
68
+ --turbo-components-panel-header-fg: #93a1a1; /* color */
69
+ --turbo-components-panel-border: #586e75; /* color */
70
+ --turbo-components-panel-block-bg: #002b36; /* color */
71
+ --turbo-components-panel-block-hover-bg: #073642; /* color */
72
+ --turbo-components-panel-block-active-bg: #586e75; /* color */
73
+ --turbo-components-box-bg: #073642; /* color */
74
+ --turbo-components-box-border: #586e75; /* color */
75
+ --turbo-components-notification-bg: #002b36; /* color */
76
+ --turbo-components-notification-border: #586e75; /* color */
77
+ --turbo-components-modal-bg: rgba(0, 43, 54, 0.9); /* color */
78
+ --turbo-components-modal-card-bg: #073642; /* color */
79
+ --turbo-components-modal-header-bg: #002b36; /* color */
80
+ --turbo-components-modal-footer-bg: #073642; /* color */
81
+ --turbo-components-dropdown-bg: #073642; /* color */
82
+ --turbo-components-dropdown-item-hover-bg: #586e75; /* color */
83
+ --turbo-components-dropdown-border: #586e75; /* color */
84
+ --turbo-components-tabs-border: #586e75; /* color */
85
+ --turbo-components-tabs-link-bg: #073642; /* color */
86
+ --turbo-components-tabs-link-active-bg: #002b36; /* color */
87
+ --turbo-components-tabs-link-hover-bg: #586e75; /* color */
88
+ }
@@ -0,0 +1,88 @@
1
+ /* Generated from solarized-light.css */
2
+
3
+ [data-theme="solarized-light"] {
4
+ --turbo-spacing-xs: 0.25rem; /* dimension */
5
+ --turbo-spacing-sm: 0.5rem; /* dimension */
6
+ --turbo-spacing-md: 1rem; /* dimension */
7
+ --turbo-spacing-lg: 1.5rem; /* dimension */
8
+ --turbo-spacing-xl: 2rem; /* dimension */
9
+ --turbo-elevation-none: none; /* shadow */
10
+ --turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
11
+ --turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
12
+ --turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
13
+ --turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
14
+ --turbo-animation-duration-fast: 150ms; /* duration */
15
+ --turbo-animation-duration-normal: 300ms; /* duration */
16
+ --turbo-animation-duration-slow: 500ms; /* duration */
17
+ --turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
18
+ --turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
19
+ --turbo-opacity-disabled: 0.5; /* number */
20
+ --turbo-opacity-hover: 0.8; /* number */
21
+ --turbo-opacity-pressed: 0.6; /* number */
22
+ --turbo-bg-base: #fdf6e3; /* color */
23
+ --turbo-bg-surface: #eee8d5; /* color */
24
+ --turbo-bg-overlay: #93a1a1; /* color */
25
+ --turbo-text-primary: #586e75; /* color */
26
+ --turbo-text-secondary: #657b83; /* color */
27
+ --turbo-text-inverse: #fdf6e3; /* color */
28
+ --turbo-brand-primary: #268bd2; /* color */
29
+ --turbo-state-info: #2aa198; /* color */
30
+ --turbo-state-success: #859900; /* color */
31
+ --turbo-state-warning: #b58900; /* color */
32
+ --turbo-state-danger: #dc322f; /* color */
33
+ --turbo-border-default: #93a1a1; /* color */
34
+ --turbo-accent-link: #268bd2; /* color */
35
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
36
+ --turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
37
+ --turbo-heading-h1: #268bd2; /* color */
38
+ --turbo-heading-h2: #2aa198; /* color */
39
+ --turbo-heading-h3: #859900; /* color */
40
+ --turbo-heading-h4: #b58900; /* color */
41
+ --turbo-heading-h5: #cb4b16; /* color */
42
+ --turbo-heading-h6: #d33682; /* color */
43
+ --turbo-body-primary: #586e75; /* color */
44
+ --turbo-body-secondary: #657b83; /* color */
45
+ --turbo-link-default: #268bd2; /* color */
46
+ --turbo-selection-fg: #002b36; /* color */
47
+ --turbo-selection-bg: #93a1a1; /* color */
48
+ --turbo-blockquote-border: #93a1a1; /* color */
49
+ --turbo-blockquote-fg: #657b83; /* color */
50
+ --turbo-blockquote-bg: #eee8d5; /* color */
51
+ --turbo-code-inline-fg: #6c71c4; /* color */
52
+ --turbo-code-inline-bg: #eee8d5; /* color */
53
+ --turbo-code-block-fg: #073642; /* color */
54
+ --turbo-code-block-bg: #eee8d5; /* color */
55
+ --turbo-table-border: #93a1a1; /* color */
56
+ --turbo-table-stripe: #eee8d5; /* color */
57
+ --turbo-table-thead-bg: #eee8d5; /* color */
58
+ --turbo-components-card-bg: #fdf6e3; /* color */
59
+ --turbo-components-card-border: #93a1a1; /* color */
60
+ --turbo-components-card-header-bg: #eee8d5; /* color */
61
+ --turbo-components-card-footer-bg: #eee8d5; /* color */
62
+ --turbo-components-message-bg: #eee8d5; /* color */
63
+ --turbo-components-message-header-bg: #fdf6e3; /* color */
64
+ --turbo-components-message-border: #93a1a1; /* color */
65
+ --turbo-components-message-body-fg: #586e75; /* color */
66
+ --turbo-components-panel-bg: #fdf6e3; /* color */
67
+ --turbo-components-panel-header-bg: #eee8d5; /* color */
68
+ --turbo-components-panel-header-fg: #073642; /* color */
69
+ --turbo-components-panel-border: #93a1a1; /* color */
70
+ --turbo-components-panel-block-bg: #eee8d5; /* color */
71
+ --turbo-components-panel-block-hover-bg: #fdf6e3; /* color */
72
+ --turbo-components-panel-block-active-bg: #93a1a1; /* color */
73
+ --turbo-components-box-bg: #fdf6e3; /* color */
74
+ --turbo-components-box-border: #93a1a1; /* color */
75
+ --turbo-components-notification-bg: #eee8d5; /* color */
76
+ --turbo-components-notification-border: #93a1a1; /* color */
77
+ --turbo-components-modal-bg: rgba(0, 43, 54, 0.86); /* color */
78
+ --turbo-components-modal-card-bg: #fdf6e3; /* color */
79
+ --turbo-components-modal-header-bg: #eee8d5; /* color */
80
+ --turbo-components-modal-footer-bg: #eee8d5; /* color */
81
+ --turbo-components-dropdown-bg: #fdf6e3; /* color */
82
+ --turbo-components-dropdown-item-hover-bg: #eee8d5; /* color */
83
+ --turbo-components-dropdown-border: #93a1a1; /* color */
84
+ --turbo-components-tabs-border: #93a1a1; /* color */
85
+ --turbo-components-tabs-link-bg: #eee8d5; /* color */
86
+ --turbo-components-tabs-link-active-bg: #fdf6e3; /* color */
87
+ --turbo-components-tabs-link-hover-bg: #93a1a1; /* color */
88
+ }
@@ -60,11 +60,34 @@
60
60
  --turbo-opacity-pressed: 0.6;
61
61
  --turbo-card-bg: #1c1c1c;
62
62
  --turbo-card-border: #3a3a3a;
63
+ --turbo-card-header-bg: #252525;
64
+ --turbo-card-footer-bg: #1f1f1f;
65
+ --turbo-message-bg: #1f1f1f;
66
+ --turbo-message-header-bg: #2a2a2a;
67
+ --turbo-message-border: #404040;
68
+ --turbo-message-body-fg: #e0e0e0;
69
+ --turbo-panel-bg: #1c1c1c;
70
+ --turbo-panel-header-bg: #2a2a2a;
71
+ --turbo-panel-header-fg: #f5f5f5;
72
+ --turbo-panel-border: #3a3a3a;
73
+ --turbo-panel-block-bg: #1f1f1f;
74
+ --turbo-panel-block-hover-bg: #262626;
75
+ --turbo-panel-block-active-bg: #2d3748;
76
+ --turbo-box-bg: #1c1c1c;
77
+ --turbo-box-border: #3a3a3a;
78
+ --turbo-notification-bg: #252525;
79
+ --turbo-notification-border: #404040;
63
80
  --turbo-modal-bg: rgba(0, 0, 0, 0.86);
64
81
  --turbo-modal-card-bg: #1c1c1c;
82
+ --turbo-modal-header-bg: #252525;
83
+ --turbo-modal-footer-bg: #1f1f1f;
65
84
  --turbo-dropdown-bg: #1c1c1c;
66
- --turbo-dropdown-border: #404040;
67
85
  --turbo-dropdown-item-hover: #2a2a2a;
86
+ --turbo-dropdown-border: #404040;
87
+ --turbo-tabs-border: #404040;
88
+ --turbo-tabs-link-bg: #252525;
89
+ --turbo-tabs-link-active-bg: #1c1c1c;
90
+ --turbo-tabs-link-hover-bg: #2a2a2a;
68
91
  --turbo-syntax-fg: #f5f5f5;
69
92
  --turbo-syntax-bg: #2b2b2b;
70
93
  --turbo-syntax-comment: #dbdbdb;
@@ -60,11 +60,34 @@
60
60
  --turbo-opacity-pressed: 0.6;
61
61
  --turbo-card-bg: #ffffff;
62
62
  --turbo-card-border: #d5d5d5;
63
+ --turbo-card-header-bg: #f5f5f5;
64
+ --turbo-card-footer-bg: #fafafa;
65
+ --turbo-message-bg: #f8f9fa;
66
+ --turbo-message-header-bg: #eef1f4;
67
+ --turbo-message-border: #d5dbe1;
68
+ --turbo-message-body-fg: #4a4a4a;
69
+ --turbo-panel-bg: #ffffff;
70
+ --turbo-panel-header-bg: #f0f0f0;
71
+ --turbo-panel-header-fg: #363636;
72
+ --turbo-panel-border: #d5d5d5;
73
+ --turbo-panel-block-bg: #fafafa;
74
+ --turbo-panel-block-hover-bg: #f5f5f5;
75
+ --turbo-panel-block-active-bg: #eef6fc;
76
+ --turbo-box-bg: #ffffff;
77
+ --turbo-box-border: #e0e0e0;
78
+ --turbo-notification-bg: #f5f5f5;
79
+ --turbo-notification-border: #e0e0e0;
63
80
  --turbo-modal-bg: rgba(10, 10, 10, 0.86);
64
81
  --turbo-modal-card-bg: #ffffff;
82
+ --turbo-modal-header-bg: #f5f5f5;
83
+ --turbo-modal-footer-bg: #fafafa;
65
84
  --turbo-dropdown-bg: #ffffff;
66
- --turbo-dropdown-border: #dbdbdb;
67
85
  --turbo-dropdown-item-hover: #f5f5f5;
86
+ --turbo-dropdown-border: #dbdbdb;
87
+ --turbo-tabs-border: #dbdbdb;
88
+ --turbo-tabs-link-bg: #f5f5f5;
89
+ --turbo-tabs-link-active-bg: #ffffff;
90
+ --turbo-tabs-link-hover-bg: #eeeeee;
68
91
  --turbo-syntax-fg: #363636;
69
92
  --turbo-syntax-bg: #f5f5f5;
70
93
  --turbo-syntax-comment: #4a4a4a;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #51576d;
41
41
  --turbo-table-cell-bg: #303446;
42
42
  --turbo-table-header-fg: #c6d0f5;
43
+ --turbo-card-bg: #292c3c;
44
+ --turbo-card-border: #737994;
45
+ --turbo-card-header-bg: #232634;
46
+ --turbo-card-footer-bg: #292c3c;
47
+ --turbo-message-bg: #292c3c;
48
+ --turbo-message-header-bg: #232634;
49
+ --turbo-message-border: #737994;
50
+ --turbo-message-body-fg: #c6d0f5;
51
+ --turbo-panel-bg: #292c3c;
52
+ --turbo-panel-header-bg: #232634;
53
+ --turbo-panel-header-fg: #c6d0f5;
54
+ --turbo-panel-border: #737994;
55
+ --turbo-panel-block-bg: #292c3c;
56
+ --turbo-panel-block-hover-bg: #232634;
57
+ --turbo-panel-block-active-bg: #232634;
58
+ --turbo-box-bg: #292c3c;
59
+ --turbo-box-border: #737994;
60
+ --turbo-notification-bg: #292c3c;
61
+ --turbo-notification-border: #737994;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #292c3c;
64
+ --turbo-modal-header-bg: #232634;
65
+ --turbo-modal-footer-bg: #292c3c;
66
+ --turbo-dropdown-bg: #292c3c;
67
+ --turbo-dropdown-item-hover: #232634;
68
+ --turbo-dropdown-border: #737994;
69
+ --turbo-tabs-border: #737994;
70
+ --turbo-tabs-link-bg: #292c3c;
71
+ --turbo-tabs-link-active-bg: #303446;
72
+ --turbo-tabs-link-hover-bg: #232634;
43
73
  --turbo-syntax-fg: #c6d0f5;
44
74
  --turbo-syntax-bg: #414559;
45
75
  --turbo-syntax-comment: #a5adce;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #bcc0cc;
41
41
  --turbo-table-cell-bg: #eff1f5;
42
42
  --turbo-table-header-fg: #4c4f69;
43
+ --turbo-card-bg: #e6e9ef;
44
+ --turbo-card-border: #9ca0b0;
45
+ --turbo-card-header-bg: #dce0e8;
46
+ --turbo-card-footer-bg: #e6e9ef;
47
+ --turbo-message-bg: #e6e9ef;
48
+ --turbo-message-header-bg: #dce0e8;
49
+ --turbo-message-border: #9ca0b0;
50
+ --turbo-message-body-fg: #4c4f69;
51
+ --turbo-panel-bg: #e6e9ef;
52
+ --turbo-panel-header-bg: #dce0e8;
53
+ --turbo-panel-header-fg: #4c4f69;
54
+ --turbo-panel-border: #9ca0b0;
55
+ --turbo-panel-block-bg: #e6e9ef;
56
+ --turbo-panel-block-hover-bg: #dce0e8;
57
+ --turbo-panel-block-active-bg: #dce0e8;
58
+ --turbo-box-bg: #e6e9ef;
59
+ --turbo-box-border: #9ca0b0;
60
+ --turbo-notification-bg: #e6e9ef;
61
+ --turbo-notification-border: #9ca0b0;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #e6e9ef;
64
+ --turbo-modal-header-bg: #dce0e8;
65
+ --turbo-modal-footer-bg: #e6e9ef;
66
+ --turbo-dropdown-bg: #e6e9ef;
67
+ --turbo-dropdown-item-hover: #dce0e8;
68
+ --turbo-dropdown-border: #9ca0b0;
69
+ --turbo-tabs-border: #9ca0b0;
70
+ --turbo-tabs-link-bg: #e6e9ef;
71
+ --turbo-tabs-link-active-bg: #eff1f5;
72
+ --turbo-tabs-link-hover-bg: #dce0e8;
43
73
  --turbo-syntax-fg: #4c4f69;
44
74
  --turbo-syntax-bg: #ccd0da;
45
75
  --turbo-syntax-comment: #6c6f85;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #494d64;
41
41
  --turbo-table-cell-bg: #24273a;
42
42
  --turbo-table-header-fg: #cad3f5;
43
+ --turbo-card-bg: #1e2030;
44
+ --turbo-card-border: #6e738d;
45
+ --turbo-card-header-bg: #181926;
46
+ --turbo-card-footer-bg: #1e2030;
47
+ --turbo-message-bg: #1e2030;
48
+ --turbo-message-header-bg: #181926;
49
+ --turbo-message-border: #6e738d;
50
+ --turbo-message-body-fg: #cad3f5;
51
+ --turbo-panel-bg: #1e2030;
52
+ --turbo-panel-header-bg: #181926;
53
+ --turbo-panel-header-fg: #cad3f5;
54
+ --turbo-panel-border: #6e738d;
55
+ --turbo-panel-block-bg: #1e2030;
56
+ --turbo-panel-block-hover-bg: #181926;
57
+ --turbo-panel-block-active-bg: #181926;
58
+ --turbo-box-bg: #1e2030;
59
+ --turbo-box-border: #6e738d;
60
+ --turbo-notification-bg: #1e2030;
61
+ --turbo-notification-border: #6e738d;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #1e2030;
64
+ --turbo-modal-header-bg: #181926;
65
+ --turbo-modal-footer-bg: #1e2030;
66
+ --turbo-dropdown-bg: #1e2030;
67
+ --turbo-dropdown-item-hover: #181926;
68
+ --turbo-dropdown-border: #6e738d;
69
+ --turbo-tabs-border: #6e738d;
70
+ --turbo-tabs-link-bg: #1e2030;
71
+ --turbo-tabs-link-active-bg: #24273a;
72
+ --turbo-tabs-link-hover-bg: #181926;
43
73
  --turbo-syntax-fg: #cad3f5;
44
74
  --turbo-syntax-bg: #363a4f;
45
75
  --turbo-syntax-comment: #a5adcb;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #45475a;
41
41
  --turbo-table-cell-bg: #1e1e2e;
42
42
  --turbo-table-header-fg: #cdd6f4;
43
+ --turbo-card-bg: #181825;
44
+ --turbo-card-border: #6c7086;
45
+ --turbo-card-header-bg: #11111b;
46
+ --turbo-card-footer-bg: #181825;
47
+ --turbo-message-bg: #181825;
48
+ --turbo-message-header-bg: #11111b;
49
+ --turbo-message-border: #6c7086;
50
+ --turbo-message-body-fg: #cdd6f4;
51
+ --turbo-panel-bg: #181825;
52
+ --turbo-panel-header-bg: #11111b;
53
+ --turbo-panel-header-fg: #cdd6f4;
54
+ --turbo-panel-border: #6c7086;
55
+ --turbo-panel-block-bg: #181825;
56
+ --turbo-panel-block-hover-bg: #11111b;
57
+ --turbo-panel-block-active-bg: #11111b;
58
+ --turbo-box-bg: #181825;
59
+ --turbo-box-border: #6c7086;
60
+ --turbo-notification-bg: #181825;
61
+ --turbo-notification-border: #6c7086;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #181825;
64
+ --turbo-modal-header-bg: #11111b;
65
+ --turbo-modal-footer-bg: #181825;
66
+ --turbo-dropdown-bg: #181825;
67
+ --turbo-dropdown-item-hover: #11111b;
68
+ --turbo-dropdown-border: #6c7086;
69
+ --turbo-tabs-border: #6c7086;
70
+ --turbo-tabs-link-bg: #181825;
71
+ --turbo-tabs-link-active-bg: #1e1e2e;
72
+ --turbo-tabs-link-hover-bg: #11111b;
43
73
  --turbo-syntax-fg: #cdd6f4;
44
74
  --turbo-syntax-bg: #313244;
45
75
  --turbo-syntax-comment: #a6adc8;
@@ -59,11 +59,34 @@
59
59
  --turbo-opacity-pressed: 0.6;
60
60
  --turbo-card-bg: #21222c;
61
61
  --turbo-card-border: #6272a4;
62
+ --turbo-card-header-bg: #282a36;
63
+ --turbo-card-footer-bg: #21222c;
64
+ --turbo-message-bg: #282a36;
65
+ --turbo-message-header-bg: #44475a;
66
+ --turbo-message-border: #6272a4;
67
+ --turbo-message-body-fg: #f8f8f2;
68
+ --turbo-panel-bg: #21222c;
69
+ --turbo-panel-header-bg: #44475a;
70
+ --turbo-panel-header-fg: #f8f8f2;
71
+ --turbo-panel-border: #6272a4;
72
+ --turbo-panel-block-bg: #282a36;
73
+ --turbo-panel-block-hover-bg: #2e303e;
74
+ --turbo-panel-block-active-bg: #44475a;
75
+ --turbo-box-bg: #21222c;
76
+ --turbo-box-border: #6272a4;
77
+ --turbo-notification-bg: #282a36;
78
+ --turbo-notification-border: #6272a4;
62
79
  --turbo-modal-bg: rgba(40, 42, 54, 0.9);
63
80
  --turbo-modal-card-bg: #21222c;
81
+ --turbo-modal-header-bg: #282a36;
82
+ --turbo-modal-footer-bg: #21222c;
64
83
  --turbo-dropdown-bg: #21222c;
65
- --turbo-dropdown-border: #6272a4;
66
84
  --turbo-dropdown-item-hover: #2e303e;
85
+ --turbo-dropdown-border: #6272a4;
86
+ --turbo-tabs-border: #6272a4;
87
+ --turbo-tabs-link-bg: #2e303e;
88
+ --turbo-tabs-link-active-bg: #21222c;
89
+ --turbo-tabs-link-hover-bg: #44475a;
67
90
  --turbo-syntax-fg: #f8f8f2;
68
91
  --turbo-syntax-bg: #21222c;
69
92
  --turbo-syntax-comment: #6272a4;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #151b23;
41
41
  --turbo-table-cell-bg: #0d1117;
42
42
  --turbo-table-header-fg: #f0f6fc;
43
+ --turbo-card-bg: #151b23;
44
+ --turbo-card-border: #3d444d;
45
+ --turbo-card-header-bg: #010409;
46
+ --turbo-card-footer-bg: #151b23;
47
+ --turbo-message-bg: #151b23;
48
+ --turbo-message-header-bg: #010409;
49
+ --turbo-message-border: #3d444d;
50
+ --turbo-message-body-fg: #f0f6fc;
51
+ --turbo-panel-bg: #151b23;
52
+ --turbo-panel-header-bg: #010409;
53
+ --turbo-panel-header-fg: #f0f6fc;
54
+ --turbo-panel-border: #3d444d;
55
+ --turbo-panel-block-bg: #151b23;
56
+ --turbo-panel-block-hover-bg: #010409;
57
+ --turbo-panel-block-active-bg: #010409;
58
+ --turbo-box-bg: #151b23;
59
+ --turbo-box-border: #3d444d;
60
+ --turbo-notification-bg: #151b23;
61
+ --turbo-notification-border: #3d444d;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #151b23;
64
+ --turbo-modal-header-bg: #010409;
65
+ --turbo-modal-footer-bg: #151b23;
66
+ --turbo-dropdown-bg: #151b23;
67
+ --turbo-dropdown-item-hover: #010409;
68
+ --turbo-dropdown-border: #3d444d;
69
+ --turbo-tabs-border: #3d444d;
70
+ --turbo-tabs-link-bg: #151b23;
71
+ --turbo-tabs-link-active-bg: #0d1117;
72
+ --turbo-tabs-link-hover-bg: #010409;
43
73
  --turbo-syntax-fg: #f0f6fc;
44
74
  --turbo-syntax-bg: #151b23;
45
75
  --turbo-syntax-comment: #9198a1;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #f6f8fa;
41
41
  --turbo-table-cell-bg: #ffffff;
42
42
  --turbo-table-header-fg: #1f2328;
43
+ --turbo-card-bg: #f6f8fa;
44
+ --turbo-card-border: #d1d9e0;
45
+ --turbo-card-header-bg: #f6f8fa;
46
+ --turbo-card-footer-bg: #f6f8fa;
47
+ --turbo-message-bg: #f6f8fa;
48
+ --turbo-message-header-bg: #f6f8fa;
49
+ --turbo-message-border: #d1d9e0;
50
+ --turbo-message-body-fg: #1f2328;
51
+ --turbo-panel-bg: #f6f8fa;
52
+ --turbo-panel-header-bg: #f6f8fa;
53
+ --turbo-panel-header-fg: #1f2328;
54
+ --turbo-panel-border: #d1d9e0;
55
+ --turbo-panel-block-bg: #f6f8fa;
56
+ --turbo-panel-block-hover-bg: #f6f8fa;
57
+ --turbo-panel-block-active-bg: #f6f8fa;
58
+ --turbo-box-bg: #f6f8fa;
59
+ --turbo-box-border: #d1d9e0;
60
+ --turbo-notification-bg: #f6f8fa;
61
+ --turbo-notification-border: #d1d9e0;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #f6f8fa;
64
+ --turbo-modal-header-bg: #f6f8fa;
65
+ --turbo-modal-footer-bg: #f6f8fa;
66
+ --turbo-dropdown-bg: #f6f8fa;
67
+ --turbo-dropdown-item-hover: #f6f8fa;
68
+ --turbo-dropdown-border: #d1d9e0;
69
+ --turbo-tabs-border: #d1d9e0;
70
+ --turbo-tabs-link-bg: #f6f8fa;
71
+ --turbo-tabs-link-active-bg: #ffffff;
72
+ --turbo-tabs-link-hover-bg: #f6f8fa;
43
73
  --turbo-syntax-fg: #1f2328;
44
74
  --turbo-syntax-bg: #f6f8fa;
45
75
  --turbo-syntax-comment: #59636e;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #3b4252;
41
41
  --turbo-table-cell-bg: #2e3440;
42
42
  --turbo-table-header-fg: #eceff4;
43
+ --turbo-card-bg: #3b4252;
44
+ --turbo-card-border: #4c566a;
45
+ --turbo-card-header-bg: #434c5e;
46
+ --turbo-card-footer-bg: #3b4252;
47
+ --turbo-message-bg: #3b4252;
48
+ --turbo-message-header-bg: #434c5e;
49
+ --turbo-message-border: #4c566a;
50
+ --turbo-message-body-fg: #eceff4;
51
+ --turbo-panel-bg: #3b4252;
52
+ --turbo-panel-header-bg: #434c5e;
53
+ --turbo-panel-header-fg: #eceff4;
54
+ --turbo-panel-border: #4c566a;
55
+ --turbo-panel-block-bg: #3b4252;
56
+ --turbo-panel-block-hover-bg: #434c5e;
57
+ --turbo-panel-block-active-bg: #434c5e;
58
+ --turbo-box-bg: #3b4252;
59
+ --turbo-box-border: #4c566a;
60
+ --turbo-notification-bg: #3b4252;
61
+ --turbo-notification-border: #4c566a;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #3b4252;
64
+ --turbo-modal-header-bg: #434c5e;
65
+ --turbo-modal-footer-bg: #3b4252;
66
+ --turbo-dropdown-bg: #3b4252;
67
+ --turbo-dropdown-item-hover: #434c5e;
68
+ --turbo-dropdown-border: #4c566a;
69
+ --turbo-tabs-border: #4c566a;
70
+ --turbo-tabs-link-bg: #3b4252;
71
+ --turbo-tabs-link-active-bg: #2e3440;
72
+ --turbo-tabs-link-hover-bg: #434c5e;
43
73
  --turbo-syntax-fg: #eceff4;
44
74
  --turbo-syntax-bg: #434c5e;
45
75
  --turbo-syntax-comment: #d8dee9;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #dfdad9;
41
41
  --turbo-table-cell-bg: #faf4ed;
42
42
  --turbo-table-header-fg: #575279;
43
+ --turbo-card-bg: #fffaf3;
44
+ --turbo-card-border: #dfdad9;
45
+ --turbo-card-header-bg: #f2e9e1;
46
+ --turbo-card-footer-bg: #fffaf3;
47
+ --turbo-message-bg: #fffaf3;
48
+ --turbo-message-header-bg: #f2e9e1;
49
+ --turbo-message-border: #dfdad9;
50
+ --turbo-message-body-fg: #575279;
51
+ --turbo-panel-bg: #fffaf3;
52
+ --turbo-panel-header-bg: #f2e9e1;
53
+ --turbo-panel-header-fg: #575279;
54
+ --turbo-panel-border: #dfdad9;
55
+ --turbo-panel-block-bg: #fffaf3;
56
+ --turbo-panel-block-hover-bg: #f2e9e1;
57
+ --turbo-panel-block-active-bg: #f2e9e1;
58
+ --turbo-box-bg: #fffaf3;
59
+ --turbo-box-border: #dfdad9;
60
+ --turbo-notification-bg: #fffaf3;
61
+ --turbo-notification-border: #dfdad9;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #fffaf3;
64
+ --turbo-modal-header-bg: #f2e9e1;
65
+ --turbo-modal-footer-bg: #fffaf3;
66
+ --turbo-dropdown-bg: #fffaf3;
67
+ --turbo-dropdown-item-hover: #f2e9e1;
68
+ --turbo-dropdown-border: #dfdad9;
69
+ --turbo-tabs-border: #dfdad9;
70
+ --turbo-tabs-link-bg: #fffaf3;
71
+ --turbo-tabs-link-active-bg: #faf4ed;
72
+ --turbo-tabs-link-hover-bg: #f2e9e1;
43
73
  --turbo-syntax-fg: #575279;
44
74
  --turbo-syntax-bg: #f2e9e1;
45
75
  --turbo-syntax-comment: #797593;
@@ -40,6 +40,36 @@
40
40
  --turbo-table-thead-bg: #44415a;
41
41
  --turbo-table-cell-bg: #232136;
42
42
  --turbo-table-header-fg: #e0def4;
43
+ --turbo-card-bg: #2a273f;
44
+ --turbo-card-border: #44415a;
45
+ --turbo-card-header-bg: #393552;
46
+ --turbo-card-footer-bg: #2a273f;
47
+ --turbo-message-bg: #2a273f;
48
+ --turbo-message-header-bg: #393552;
49
+ --turbo-message-border: #44415a;
50
+ --turbo-message-body-fg: #e0def4;
51
+ --turbo-panel-bg: #2a273f;
52
+ --turbo-panel-header-bg: #393552;
53
+ --turbo-panel-header-fg: #e0def4;
54
+ --turbo-panel-border: #44415a;
55
+ --turbo-panel-block-bg: #2a273f;
56
+ --turbo-panel-block-hover-bg: #393552;
57
+ --turbo-panel-block-active-bg: #393552;
58
+ --turbo-box-bg: #2a273f;
59
+ --turbo-box-border: #44415a;
60
+ --turbo-notification-bg: #2a273f;
61
+ --turbo-notification-border: #44415a;
62
+ --turbo-modal-bg: rgba(10, 10, 10, 0.86);
63
+ --turbo-modal-card-bg: #2a273f;
64
+ --turbo-modal-header-bg: #393552;
65
+ --turbo-modal-footer-bg: #2a273f;
66
+ --turbo-dropdown-bg: #2a273f;
67
+ --turbo-dropdown-item-hover: #393552;
68
+ --turbo-dropdown-border: #44415a;
69
+ --turbo-tabs-border: #44415a;
70
+ --turbo-tabs-link-bg: #2a273f;
71
+ --turbo-tabs-link-active-bg: #232136;
72
+ --turbo-tabs-link-hover-bg: #393552;
43
73
  --turbo-syntax-fg: #e0def4;
44
74
  --turbo-syntax-bg: #393552;
45
75
  --turbo-syntax-comment: #908caa;