@lgtm-hq/turbo-themes 0.25.2 → 0.27.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.
- package/assets/css/themes/one-dark.css +58 -0
- package/assets/css/themes/one-light.css +62 -0
- package/assets/css/themes/terminal.css +59 -0
- package/assets/img/one-dark.png +0 -0
- package/assets/img/one-light.png +0 -0
- package/assets/img/terminal.png +0 -0
- package/dist/adapters/tailwind/{colors-CosDgrDG.js → colors-BI7jSURT.js} +22 -7
- package/dist/adapters/tailwind/colors.js +1 -1
- package/dist/adapters/tailwind/preset.js +1 -1
- package/dist/themes/packs/one-dark.d.ts +8 -0
- package/dist/themes/packs/one-dark.d.ts.map +1 -0
- package/dist/themes/packs/one-dark.js +191 -0
- package/dist/themes/packs/one-dark.js.map +1 -0
- package/dist/themes/packs/terminal.d.ts +10 -0
- package/dist/themes/packs/terminal.d.ts.map +1 -0
- package/dist/themes/packs/terminal.js +105 -0
- package/dist/themes/packs/terminal.js.map +1 -0
- package/dist/themes/registry.d.ts.map +1 -1
- package/dist/themes/registry.js +4 -0
- package/dist/themes/registry.js.map +1 -1
- package/dist/tokens/style-dictionary/one-dark.json +264 -0
- package/dist/tokens/style-dictionary/one-light.json +280 -0
- package/dist/tokens/style-dictionary/terminal.json +267 -0
- package/dist/tokens/style-dictionary/themes.json +611 -4
- package/dist/tokens/style-dictionary/tokens.json +272 -4
- package/package.json +1 -1
- package/packages/adapters/tailwind/dist/{colors-CosDgrDG.js → colors-BI7jSURT.js} +22 -7
- package/packages/adapters/tailwind/dist/colors-BI7jSURT.js.map +1 -0
- package/packages/adapters/tailwind/dist/colors.js +1 -1
- package/packages/adapters/tailwind/dist/preset.js +1 -1
- package/packages/core/dist/themes/metadata.d.ts.map +1 -1
- package/packages/core/dist/themes/metadata.js +2 -0
- package/packages/core/dist/themes/metadata.js.map +1 -1
- package/packages/core/dist/themes/tokens.json +272 -4
- package/packages/css/dist/themes/one-dark.css +91 -0
- package/packages/css/dist/themes/one-dark.css.d.ts +4 -0
- package/packages/css/dist/themes/one-light.css +91 -0
- package/packages/css/dist/themes/one-light.css.d.ts +4 -0
- package/packages/css/dist/themes/terminal.css +90 -0
- package/packages/css/dist/themes/terminal.css.d.ts +4 -0
- package/packages/css/dist/turbo-themes-all.css +271 -0
- package/packages/css/dist/turbo.css +275 -0
- package/packages/theme-selector/dist/index.d.ts +1 -1
- package/packages/theme-selector/dist/index.js +44 -12
- package/packages/theme-selector/dist/index.js.map +1 -1
- package/packages/adapters/tailwind/dist/colors-CosDgrDG.js.map +0 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* Generated from one-dark.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="one-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: #282c34; /* color */
|
|
23
|
+
--turbo-bg-surface: #2c313a; /* color */
|
|
24
|
+
--turbo-bg-overlay: #3e4451; /* color */
|
|
25
|
+
--turbo-text-primary: #abb2bf; /* color */
|
|
26
|
+
--turbo-text-secondary: #828997; /* color */
|
|
27
|
+
--turbo-text-inverse: #282c34; /* color */
|
|
28
|
+
--turbo-brand-primary: #61afef; /* color */
|
|
29
|
+
--turbo-state-info: #56b6c2; /* color */
|
|
30
|
+
--turbo-state-success: #98c379; /* color */
|
|
31
|
+
--turbo-state-warning: #e5c07b; /* color */
|
|
32
|
+
--turbo-state-danger: #e06c75; /* color */
|
|
33
|
+
--turbo-border-default: #3e4451; /* color */
|
|
34
|
+
--turbo-accent-link: #61afef; /* 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: #61afef; /* color */
|
|
38
|
+
--turbo-heading-h2: #c678dd; /* color */
|
|
39
|
+
--turbo-heading-h3: #98c379; /* color */
|
|
40
|
+
--turbo-heading-h4: #e5c07b; /* color */
|
|
41
|
+
--turbo-heading-h5: #d19a66; /* color */
|
|
42
|
+
--turbo-heading-h6: #56b6c2; /* color */
|
|
43
|
+
--turbo-body-primary: #abb2bf; /* color */
|
|
44
|
+
--turbo-body-secondary: #828997; /* color */
|
|
45
|
+
--turbo-link-default: #61afef; /* color */
|
|
46
|
+
--turbo-selection-fg: #abb2bf; /* color */
|
|
47
|
+
--turbo-selection-bg: #3e4451; /* color */
|
|
48
|
+
--turbo-blockquote-border: #3e4451; /* color */
|
|
49
|
+
--turbo-blockquote-fg: #828997; /* color */
|
|
50
|
+
--turbo-blockquote-bg: #2c313a; /* color */
|
|
51
|
+
--turbo-code-inline-fg: #c678dd; /* color */
|
|
52
|
+
--turbo-code-inline-bg: #2c313a; /* color */
|
|
53
|
+
--turbo-code-block-fg: #abb2bf; /* color */
|
|
54
|
+
--turbo-code-block-bg: #21252b; /* color */
|
|
55
|
+
--turbo-table-border: #3e4451; /* color */
|
|
56
|
+
--turbo-table-stripe: #2c313a; /* color */
|
|
57
|
+
--turbo-table-thead-bg: #3e4451; /* color */
|
|
58
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* Generated from one-light.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="one-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: #fafafa; /* color */
|
|
23
|
+
--turbo-bg-surface: #f0f0f0; /* color */
|
|
24
|
+
--turbo-bg-overlay: #e5e5e6; /* color */
|
|
25
|
+
--turbo-text-primary: #383a42; /* color */
|
|
26
|
+
--turbo-text-secondary: #696c77; /* color */
|
|
27
|
+
--turbo-text-inverse: #fafafa; /* color */
|
|
28
|
+
--turbo-brand-primary: #4078f2; /* color */
|
|
29
|
+
--turbo-state-info: #0184bc; /* color */
|
|
30
|
+
--turbo-state-success: #50a14f; /* color */
|
|
31
|
+
--turbo-state-warning: #c18401; /* color */
|
|
32
|
+
--turbo-state-danger: #e45649; /* color */
|
|
33
|
+
--turbo-state-info-text: #000000; /* color */
|
|
34
|
+
--turbo-state-success-text: #000000; /* color */
|
|
35
|
+
--turbo-state-warning-text: #000000; /* color */
|
|
36
|
+
--turbo-state-danger-text: #000000; /* color */
|
|
37
|
+
--turbo-border-default: #d0d0d1; /* color */
|
|
38
|
+
--turbo-accent-link: #4078f2; /* color */
|
|
39
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
|
|
40
|
+
--turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
|
|
41
|
+
--turbo-heading-h1: #4078f2; /* color */
|
|
42
|
+
--turbo-heading-h2: #a626a4; /* color */
|
|
43
|
+
--turbo-heading-h3: #50a14f; /* color */
|
|
44
|
+
--turbo-heading-h4: #c18401; /* color */
|
|
45
|
+
--turbo-heading-h5: #986801; /* color */
|
|
46
|
+
--turbo-heading-h6: #0184bc; /* color */
|
|
47
|
+
--turbo-body-primary: #383a42; /* color */
|
|
48
|
+
--turbo-body-secondary: #696c77; /* color */
|
|
49
|
+
--turbo-link-default: #4078f2; /* color */
|
|
50
|
+
--turbo-selection-fg: #383a42; /* color */
|
|
51
|
+
--turbo-selection-bg: #dfe1e5; /* color */
|
|
52
|
+
--turbo-blockquote-border: #d0d0d1; /* color */
|
|
53
|
+
--turbo-blockquote-fg: #696c77; /* color */
|
|
54
|
+
--turbo-blockquote-bg: #f0f0f0; /* color */
|
|
55
|
+
--turbo-code-inline-fg: #a626a4; /* color */
|
|
56
|
+
--turbo-code-inline-bg: #e5e5e6; /* color */
|
|
57
|
+
--turbo-code-block-fg: #383a42; /* color */
|
|
58
|
+
--turbo-code-block-bg: #e5e5e6; /* color */
|
|
59
|
+
--turbo-table-border: #d0d0d1; /* color */
|
|
60
|
+
--turbo-table-stripe: #f0f0f0; /* color */
|
|
61
|
+
--turbo-table-thead-bg: #e5e5e6; /* color */
|
|
62
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* Generated from terminal.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="terminal"] {
|
|
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: #0d0d0d; /* color */
|
|
23
|
+
--turbo-bg-surface: #080808; /* color */
|
|
24
|
+
--turbo-bg-overlay: #111111; /* color */
|
|
25
|
+
--turbo-text-primary: #c8ffc8; /* color */
|
|
26
|
+
--turbo-text-secondary: #8fbc8f; /* color */
|
|
27
|
+
--turbo-text-inverse: #0d0d0d; /* color */
|
|
28
|
+
--turbo-brand-primary: #39ff14; /* color */
|
|
29
|
+
--turbo-state-info: #7dd3fc; /* color */
|
|
30
|
+
--turbo-state-success: #39ff14; /* color */
|
|
31
|
+
--turbo-state-warning: #ffb000; /* color */
|
|
32
|
+
--turbo-state-danger: #ff4444; /* color */
|
|
33
|
+
--turbo-border-default: #1f3d1f; /* color */
|
|
34
|
+
--turbo-accent-link: #7dd3fc; /* color */
|
|
35
|
+
--turbo-font-sans: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
|
|
36
|
+
--turbo-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
|
|
37
|
+
--turbo-heading-h1: #39ff14; /* color */
|
|
38
|
+
--turbo-heading-h2: #7dd3fc; /* color */
|
|
39
|
+
--turbo-heading-h3: #ffb000; /* color */
|
|
40
|
+
--turbo-heading-h4: #39ff14; /* color */
|
|
41
|
+
--turbo-heading-h5: #8fbc8f; /* color */
|
|
42
|
+
--turbo-heading-h6: #c8ffc8; /* color */
|
|
43
|
+
--turbo-body-primary: #c8ffc8; /* color */
|
|
44
|
+
--turbo-body-secondary: #8fbc8f; /* color */
|
|
45
|
+
--turbo-link-default: #7dd3fc; /* color */
|
|
46
|
+
--turbo-selection-fg: #0d0d0d; /* color */
|
|
47
|
+
--turbo-selection-bg: #39ff14; /* color */
|
|
48
|
+
--turbo-blockquote-border: #39ff14; /* color */
|
|
49
|
+
--turbo-blockquote-fg: #8fbc8f; /* color */
|
|
50
|
+
--turbo-blockquote-bg: #111111; /* color */
|
|
51
|
+
--turbo-code-inline-fg: #ffb000; /* color */
|
|
52
|
+
--turbo-code-inline-bg: #111111; /* color */
|
|
53
|
+
--turbo-code-block-fg: #c8ffc8; /* color */
|
|
54
|
+
--turbo-code-block-bg: #080808; /* color */
|
|
55
|
+
--turbo-table-border: #1f3d1f; /* color */
|
|
56
|
+
--turbo-table-stripe: #111111; /* color */
|
|
57
|
+
--turbo-table-thead-bg: #080808; /* color */
|
|
58
|
+
--turbo-content-table-header-fg: #c8ffc8; /* color */
|
|
59
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|