@lgtm-hq/turbo-themes 0.12.16
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/LICENSE +21 -0
- package/README.md +231 -0
- package/assets/css/adapters/bulma.css +26 -0
- package/assets/css/themes/bulma-dark.css +90 -0
- package/assets/css/themes/bulma-light.css +90 -0
- package/assets/css/themes/catppuccin-frappe.css +58 -0
- package/assets/css/themes/catppuccin-latte.css +58 -0
- package/assets/css/themes/catppuccin-macchiato.css +58 -0
- package/assets/css/themes/catppuccin-mocha.css +58 -0
- package/assets/css/themes/dracula.css +90 -0
- package/assets/css/themes/github-dark.css +58 -0
- package/assets/css/themes/github-light.css +58 -0
- package/assets/css/turbo-core.css +92 -0
- package/dist/adapters/bootstrap/_utilities.scss +178 -0
- package/dist/adapters/bootstrap/_variables.scss +99 -0
- package/dist/adapters/tailwind/colors.js +133 -0
- package/dist/adapters/tailwind/preset.js +136 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/themes/bulma.d.ts +31 -0
- package/dist/themes/bulma.d.ts.map +1 -0
- package/dist/themes/bulma.js +160 -0
- package/dist/themes/bulma.js.map +1 -0
- package/dist/themes/css.d.ts +4 -0
- package/dist/themes/css.d.ts.map +1 -0
- package/dist/themes/css.js +617 -0
- package/dist/themes/css.js.map +1 -0
- package/dist/themes/packs/bulma.d.ts +12 -0
- package/dist/themes/packs/bulma.d.ts.map +1 -0
- package/dist/themes/packs/bulma.js +285 -0
- package/dist/themes/packs/bulma.js.map +1 -0
- package/dist/themes/packs/catppuccin.synced.d.ts +3 -0
- package/dist/themes/packs/catppuccin.synced.d.ts.map +1 -0
- package/dist/themes/packs/catppuccin.synced.js +340 -0
- package/dist/themes/packs/catppuccin.synced.js.map +1 -0
- package/dist/themes/packs/dracula.d.ts +8 -0
- package/dist/themes/packs/dracula.d.ts.map +1 -0
- package/dist/themes/packs/dracula.js +145 -0
- package/dist/themes/packs/dracula.js.map +1 -0
- package/dist/themes/packs/github.synced.d.ts +10 -0
- package/dist/themes/packs/github.synced.d.ts.map +1 -0
- package/dist/themes/packs/github.synced.js +281 -0
- package/dist/themes/packs/github.synced.js.map +1 -0
- package/dist/themes/registry.d.ts +3 -0
- package/dist/themes/registry.d.ts.map +1 -0
- package/dist/themes/registry.js +16 -0
- package/dist/themes/registry.js.map +1 -0
- package/dist/themes/types.d.ts +172 -0
- package/dist/themes/types.d.ts.map +1 -0
- package/dist/themes/types.js +4 -0
- package/dist/themes/types.js.map +1 -0
- package/dist/tokens/index.d.ts +8 -0
- package/dist/tokens/index.d.ts.map +1 -0
- package/dist/tokens/index.js +9 -0
- package/dist/tokens/index.js.map +1 -0
- package/dist/tokens/style-dictionary/bulma-dark.json +410 -0
- package/dist/tokens/style-dictionary/bulma-light.json +410 -0
- package/dist/tokens/style-dictionary/catppuccin-frappe.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-latte.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-macchiato.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-mocha.json +264 -0
- package/dist/tokens/style-dictionary/dracula.json +409 -0
- package/dist/tokens/style-dictionary/github-dark.json +264 -0
- package/dist/tokens/style-dictionary/github-light.json +264 -0
- package/dist/tokens/style-dictionary/themes.json +2526 -0
- package/dist/tokens/style-dictionary/tokens.json +1050 -0
- package/dist/tokens/tokens-typed.json +218 -0
- package/package.json +180 -0
- package/packages/adapters/bulma/dist/bulma-adapter.css +153 -0
- package/packages/adapters/bulma/dist/index.d.ts +60 -0
- package/packages/adapters/bulma/dist/index.d.ts.map +1 -0
- package/packages/adapters/bulma/dist/index.js +343 -0
- package/packages/adapters/bulma/dist/index.js.map +1 -0
- package/packages/adapters/tailwind/dist/colors.d.ts +32 -0
- package/packages/adapters/tailwind/dist/colors.d.ts.map +1 -0
- package/packages/adapters/tailwind/dist/colors.js +133 -0
- package/packages/adapters/tailwind/dist/colors.js.map +1 -0
- package/packages/adapters/tailwind/dist/preset.d.ts +117 -0
- package/packages/adapters/tailwind/dist/preset.d.ts.map +1 -0
- package/packages/adapters/tailwind/dist/preset.js +136 -0
- package/packages/adapters/tailwind/dist/preset.js.map +1 -0
- package/packages/adapters/tailwind/dist/tsconfig.tsbuildinfo +1 -0
- package/packages/css/dist/base.d.ts +27 -0
- package/packages/css/dist/base.d.ts.map +1 -0
- package/packages/css/dist/base.js +277 -0
- package/packages/css/dist/base.js.map +1 -0
- package/packages/css/dist/components/buttons.css +141 -0
- package/packages/css/dist/components/cards.css +157 -0
- package/packages/css/dist/components/forms.css +109 -0
- package/packages/css/dist/components/navigation.css +175 -0
- package/packages/css/dist/components/notifications.css +192 -0
- package/packages/css/dist/components/progress.css +113 -0
- package/packages/css/dist/components/sidebar.css +537 -0
- package/packages/css/dist/components/tables.css +157 -0
- package/packages/css/dist/components/tabs.css +106 -0
- package/packages/css/dist/components/tags.css +121 -0
- package/packages/css/dist/generator.d.ts +60 -0
- package/packages/css/dist/generator.d.ts.map +1 -0
- package/packages/css/dist/generator.js +267 -0
- package/packages/css/dist/generator.js.map +1 -0
- package/packages/css/dist/index.d.ts +13 -0
- package/packages/css/dist/index.d.ts.map +1 -0
- package/packages/css/dist/index.js +16 -0
- package/packages/css/dist/index.js.map +1 -0
- package/packages/css/dist/syntax.d.ts +29 -0
- package/packages/css/dist/syntax.d.ts.map +1 -0
- package/packages/css/dist/syntax.js +341 -0
- package/packages/css/dist/syntax.js.map +1 -0
- package/packages/css/dist/themes/bulma-dark.css +86 -0
- package/packages/css/dist/themes/bulma-light.css +86 -0
- package/packages/css/dist/themes/catppuccin-frappe.css +61 -0
- package/packages/css/dist/themes/catppuccin-latte.css +61 -0
- package/packages/css/dist/themes/catppuccin-macchiato.css +61 -0
- package/packages/css/dist/themes/catppuccin-mocha.css +61 -0
- package/packages/css/dist/themes/dracula.css +85 -0
- package/packages/css/dist/themes/github-dark.css +61 -0
- package/packages/css/dist/themes/github-light.css +61 -0
- package/packages/css/dist/turbo-base.css +246 -0
- package/packages/css/dist/turbo-components.css +1833 -0
- package/packages/css/dist/turbo-core.css +92 -0
- package/packages/css/dist/turbo-syntax.css +242 -0
- package/packages/css/dist/turbo.css +727 -0
- package/packages/theme-selector/dist/accessibility.d.ts +8 -0
- package/packages/theme-selector/dist/accessibility.d.ts.map +1 -0
- package/packages/theme-selector/dist/accessibility.js +19 -0
- package/packages/theme-selector/dist/accessibility.js.map +1 -0
- package/packages/theme-selector/dist/apply-theme.d.ts +12 -0
- package/packages/theme-selector/dist/apply-theme.d.ts.map +1 -0
- package/packages/theme-selector/dist/apply-theme.js +60 -0
- package/packages/theme-selector/dist/apply-theme.js.map +1 -0
- package/packages/theme-selector/dist/constants.d.ts +28 -0
- package/packages/theme-selector/dist/constants.d.ts.map +1 -0
- package/packages/theme-selector/dist/constants.js +29 -0
- package/packages/theme-selector/dist/constants.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/events.d.ts +9 -0
- package/packages/theme-selector/dist/dropdown/events.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/events.js +120 -0
- package/packages/theme-selector/dist/dropdown/events.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/helpers.d.ts +12 -0
- package/packages/theme-selector/dist/dropdown/helpers.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/helpers.js +25 -0
- package/packages/theme-selector/dist/dropdown/helpers.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/state.d.ts +26 -0
- package/packages/theme-selector/dist/dropdown/state.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/state.js +50 -0
- package/packages/theme-selector/dist/dropdown/state.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/ui.d.ts +46 -0
- package/packages/theme-selector/dist/dropdown/ui.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/ui.js +179 -0
- package/packages/theme-selector/dist/dropdown/ui.js.map +1 -0
- package/packages/theme-selector/dist/errors.d.ts +59 -0
- package/packages/theme-selector/dist/errors.d.ts.map +1 -0
- package/packages/theme-selector/dist/errors.js +127 -0
- package/packages/theme-selector/dist/errors.js.map +1 -0
- package/packages/theme-selector/dist/index.d.ts +25 -0
- package/packages/theme-selector/dist/index.d.ts.map +1 -0
- package/packages/theme-selector/dist/index.js +114 -0
- package/packages/theme-selector/dist/index.js.map +1 -0
- package/packages/theme-selector/dist/navbar.d.ts +13 -0
- package/packages/theme-selector/dist/navbar.d.ts.map +1 -0
- package/packages/theme-selector/dist/navbar.js +75 -0
- package/packages/theme-selector/dist/navbar.js.map +1 -0
- package/packages/theme-selector/dist/storage.d.ts +32 -0
- package/packages/theme-selector/dist/storage.d.ts.map +1 -0
- package/packages/theme-selector/dist/storage.js +100 -0
- package/packages/theme-selector/dist/storage.js.map +1 -0
- package/packages/theme-selector/dist/theme-loader.d.ts +37 -0
- package/packages/theme-selector/dist/theme-loader.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-loader.js +142 -0
- package/packages/theme-selector/dist/theme-loader.js.map +1 -0
- package/packages/theme-selector/dist/theme-mapper.d.ts +25 -0
- package/packages/theme-selector/dist/theme-mapper.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-mapper.js +99 -0
- package/packages/theme-selector/dist/theme-mapper.js.map +1 -0
- package/packages/theme-selector/dist/theme-resolver.d.ts +50 -0
- package/packages/theme-selector/dist/theme-resolver.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-resolver.js +84 -0
- package/packages/theme-selector/dist/theme-resolver.js.map +1 -0
- package/packages/theme-selector/dist/types.d.ts +7 -0
- package/packages/theme-selector/dist/types.d.ts.map +1 -0
- package/packages/theme-selector/dist/types.js +6 -0
- package/packages/theme-selector/dist/types.js.map +1 -0
|
@@ -0,0 +1,61 @@
|
|
|
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="catppuccin-latte"] {
|
|
5
|
+
--turbo-bg-base: #eff1f5;
|
|
6
|
+
--turbo-bg-surface: #e6e9ef;
|
|
7
|
+
--turbo-bg-overlay: #dce0e8;
|
|
8
|
+
--turbo-text-primary: #4c4f69;
|
|
9
|
+
--turbo-text-secondary: #6c6f85;
|
|
10
|
+
--turbo-text-inverse: #eff1f5;
|
|
11
|
+
--turbo-brand-primary: #1e66f5;
|
|
12
|
+
--turbo-state-info: #04a5e5;
|
|
13
|
+
--turbo-state-success: #40a02b;
|
|
14
|
+
--turbo-state-warning: #df8e1d;
|
|
15
|
+
--turbo-state-danger: #d20f39;
|
|
16
|
+
--turbo-border-default: #9ca0b0;
|
|
17
|
+
--turbo-accent-link: #1e66f5;
|
|
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: #40a02b;
|
|
21
|
+
--turbo-heading-h2: #1e66f5;
|
|
22
|
+
--turbo-heading-h3: #209fb5;
|
|
23
|
+
--turbo-heading-h4: #df8e1d;
|
|
24
|
+
--turbo-heading-h5: #8839ef;
|
|
25
|
+
--turbo-heading-h6: #d20f39;
|
|
26
|
+
--turbo-body-primary: #4c4f69;
|
|
27
|
+
--turbo-body-secondary: #6c6f85;
|
|
28
|
+
--turbo-link-default: #1e66f5;
|
|
29
|
+
--turbo-selection-fg: #4c4f69;
|
|
30
|
+
--turbo-selection-bg: #8c8fa1;
|
|
31
|
+
--turbo-blockquote-border: #8c8fa1;
|
|
32
|
+
--turbo-blockquote-fg: #4c4f69;
|
|
33
|
+
--turbo-blockquote-bg: #e6e9ef;
|
|
34
|
+
--turbo-code-inline-fg: #4c4f69;
|
|
35
|
+
--turbo-code-inline-bg: #ccd0da;
|
|
36
|
+
--turbo-code-block-fg: #4c4f69;
|
|
37
|
+
--turbo-code-block-bg: #ccd0da;
|
|
38
|
+
--turbo-table-border: #8c8fa1;
|
|
39
|
+
--turbo-table-stripe: #ccd0da;
|
|
40
|
+
--turbo-table-thead-bg: #bcc0cc;
|
|
41
|
+
--turbo-table-cell-bg: #eff1f5;
|
|
42
|
+
--turbo-table-header-fg: #4c4f69;
|
|
43
|
+
--turbo-syntax-fg: #4c4f69;
|
|
44
|
+
--turbo-syntax-bg: #ccd0da;
|
|
45
|
+
--turbo-syntax-comment: #6c6f85;
|
|
46
|
+
--turbo-syntax-keyword: #1e66f5;
|
|
47
|
+
--turbo-syntax-string: #40a02b;
|
|
48
|
+
--turbo-syntax-number: #df8e1d;
|
|
49
|
+
--turbo-syntax-function: #04a5e5;
|
|
50
|
+
--turbo-syntax-type: #1e66f5;
|
|
51
|
+
--turbo-syntax-variable: #4c4f69;
|
|
52
|
+
--turbo-syntax-operator: #6c6f85;
|
|
53
|
+
--turbo-syntax-punctuation: #6c6f85;
|
|
54
|
+
--turbo-syntax-tag: #d20f39;
|
|
55
|
+
--turbo-syntax-attribute: #04a5e5;
|
|
56
|
+
--turbo-syntax-value: #40a02b;
|
|
57
|
+
--turbo-syntax-error: #d20f39;
|
|
58
|
+
--turbo-syntax-deleted: #d20f39;
|
|
59
|
+
--turbo-syntax-inserted: #40a02b;
|
|
60
|
+
color-scheme: light;
|
|
61
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
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="catppuccin-macchiato"] {
|
|
5
|
+
--turbo-bg-base: #24273a;
|
|
6
|
+
--turbo-bg-surface: #1e2030;
|
|
7
|
+
--turbo-bg-overlay: #181926;
|
|
8
|
+
--turbo-text-primary: #cad3f5;
|
|
9
|
+
--turbo-text-secondary: #a5adcb;
|
|
10
|
+
--turbo-text-inverse: #24273a;
|
|
11
|
+
--turbo-brand-primary: #8aadf4;
|
|
12
|
+
--turbo-state-info: #91d7e3;
|
|
13
|
+
--turbo-state-success: #a6da95;
|
|
14
|
+
--turbo-state-warning: #eed49f;
|
|
15
|
+
--turbo-state-danger: #ed8796;
|
|
16
|
+
--turbo-border-default: #6e738d;
|
|
17
|
+
--turbo-accent-link: #8aadf4;
|
|
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: #a6da95;
|
|
21
|
+
--turbo-heading-h2: #8aadf4;
|
|
22
|
+
--turbo-heading-h3: #7dc4e4;
|
|
23
|
+
--turbo-heading-h4: #eed49f;
|
|
24
|
+
--turbo-heading-h5: #c6a0f6;
|
|
25
|
+
--turbo-heading-h6: #ed8796;
|
|
26
|
+
--turbo-body-primary: #cad3f5;
|
|
27
|
+
--turbo-body-secondary: #a5adcb;
|
|
28
|
+
--turbo-link-default: #8aadf4;
|
|
29
|
+
--turbo-selection-fg: #cad3f5;
|
|
30
|
+
--turbo-selection-bg: #8087a2;
|
|
31
|
+
--turbo-blockquote-border: #8087a2;
|
|
32
|
+
--turbo-blockquote-fg: #cad3f5;
|
|
33
|
+
--turbo-blockquote-bg: #1e2030;
|
|
34
|
+
--turbo-code-inline-fg: #cad3f5;
|
|
35
|
+
--turbo-code-inline-bg: #363a4f;
|
|
36
|
+
--turbo-code-block-fg: #cad3f5;
|
|
37
|
+
--turbo-code-block-bg: #363a4f;
|
|
38
|
+
--turbo-table-border: #8087a2;
|
|
39
|
+
--turbo-table-stripe: #363a4f;
|
|
40
|
+
--turbo-table-thead-bg: #494d64;
|
|
41
|
+
--turbo-table-cell-bg: #24273a;
|
|
42
|
+
--turbo-table-header-fg: #cad3f5;
|
|
43
|
+
--turbo-syntax-fg: #cad3f5;
|
|
44
|
+
--turbo-syntax-bg: #363a4f;
|
|
45
|
+
--turbo-syntax-comment: #a5adcb;
|
|
46
|
+
--turbo-syntax-keyword: #8aadf4;
|
|
47
|
+
--turbo-syntax-string: #a6da95;
|
|
48
|
+
--turbo-syntax-number: #eed49f;
|
|
49
|
+
--turbo-syntax-function: #91d7e3;
|
|
50
|
+
--turbo-syntax-type: #8aadf4;
|
|
51
|
+
--turbo-syntax-variable: #cad3f5;
|
|
52
|
+
--turbo-syntax-operator: #a5adcb;
|
|
53
|
+
--turbo-syntax-punctuation: #a5adcb;
|
|
54
|
+
--turbo-syntax-tag: #ed8796;
|
|
55
|
+
--turbo-syntax-attribute: #91d7e3;
|
|
56
|
+
--turbo-syntax-value: #a6da95;
|
|
57
|
+
--turbo-syntax-error: #ed8796;
|
|
58
|
+
--turbo-syntax-deleted: #ed8796;
|
|
59
|
+
--turbo-syntax-inserted: #a6da95;
|
|
60
|
+
color-scheme: dark;
|
|
61
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
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="catppuccin-mocha"] {
|
|
5
|
+
--turbo-bg-base: #1e1e2e;
|
|
6
|
+
--turbo-bg-surface: #181825;
|
|
7
|
+
--turbo-bg-overlay: #11111b;
|
|
8
|
+
--turbo-text-primary: #cdd6f4;
|
|
9
|
+
--turbo-text-secondary: #a6adc8;
|
|
10
|
+
--turbo-text-inverse: #1e1e2e;
|
|
11
|
+
--turbo-brand-primary: #89b4fa;
|
|
12
|
+
--turbo-state-info: #89dceb;
|
|
13
|
+
--turbo-state-success: #a6e3a1;
|
|
14
|
+
--turbo-state-warning: #f9e2af;
|
|
15
|
+
--turbo-state-danger: #f38ba8;
|
|
16
|
+
--turbo-border-default: #6c7086;
|
|
17
|
+
--turbo-accent-link: #89b4fa;
|
|
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: #a6e3a1;
|
|
21
|
+
--turbo-heading-h2: #89b4fa;
|
|
22
|
+
--turbo-heading-h3: #74c7ec;
|
|
23
|
+
--turbo-heading-h4: #f9e2af;
|
|
24
|
+
--turbo-heading-h5: #cba6f7;
|
|
25
|
+
--turbo-heading-h6: #f38ba8;
|
|
26
|
+
--turbo-body-primary: #cdd6f4;
|
|
27
|
+
--turbo-body-secondary: #a6adc8;
|
|
28
|
+
--turbo-link-default: #89b4fa;
|
|
29
|
+
--turbo-selection-fg: #cdd6f4;
|
|
30
|
+
--turbo-selection-bg: #7f849c;
|
|
31
|
+
--turbo-blockquote-border: #7f849c;
|
|
32
|
+
--turbo-blockquote-fg: #cdd6f4;
|
|
33
|
+
--turbo-blockquote-bg: #181825;
|
|
34
|
+
--turbo-code-inline-fg: #cdd6f4;
|
|
35
|
+
--turbo-code-inline-bg: #313244;
|
|
36
|
+
--turbo-code-block-fg: #cdd6f4;
|
|
37
|
+
--turbo-code-block-bg: #313244;
|
|
38
|
+
--turbo-table-border: #7f849c;
|
|
39
|
+
--turbo-table-stripe: #313244;
|
|
40
|
+
--turbo-table-thead-bg: #45475a;
|
|
41
|
+
--turbo-table-cell-bg: #1e1e2e;
|
|
42
|
+
--turbo-table-header-fg: #cdd6f4;
|
|
43
|
+
--turbo-syntax-fg: #cdd6f4;
|
|
44
|
+
--turbo-syntax-bg: #313244;
|
|
45
|
+
--turbo-syntax-comment: #a6adc8;
|
|
46
|
+
--turbo-syntax-keyword: #89b4fa;
|
|
47
|
+
--turbo-syntax-string: #a6e3a1;
|
|
48
|
+
--turbo-syntax-number: #f9e2af;
|
|
49
|
+
--turbo-syntax-function: #89dceb;
|
|
50
|
+
--turbo-syntax-type: #89b4fa;
|
|
51
|
+
--turbo-syntax-variable: #cdd6f4;
|
|
52
|
+
--turbo-syntax-operator: #a6adc8;
|
|
53
|
+
--turbo-syntax-punctuation: #a6adc8;
|
|
54
|
+
--turbo-syntax-tag: #f38ba8;
|
|
55
|
+
--turbo-syntax-attribute: #89dceb;
|
|
56
|
+
--turbo-syntax-value: #a6e3a1;
|
|
57
|
+
--turbo-syntax-error: #f38ba8;
|
|
58
|
+
--turbo-syntax-deleted: #f38ba8;
|
|
59
|
+
--turbo-syntax-inserted: #a6e3a1;
|
|
60
|
+
color-scheme: dark;
|
|
61
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');
|
|
2
|
+
|
|
3
|
+
[data-theme="dracula"] {
|
|
4
|
+
--turbo-bg-base: #282a36;
|
|
5
|
+
--turbo-bg-surface: #21222c;
|
|
6
|
+
--turbo-bg-overlay: #44475a;
|
|
7
|
+
--turbo-text-primary: #f8f8f2;
|
|
8
|
+
--turbo-text-secondary: #6272a4;
|
|
9
|
+
--turbo-text-inverse: #282a36;
|
|
10
|
+
--turbo-brand-primary: #bd93f9;
|
|
11
|
+
--turbo-state-info: #8be9fd;
|
|
12
|
+
--turbo-state-success: #50fa7b;
|
|
13
|
+
--turbo-state-warning: #f1fa8c;
|
|
14
|
+
--turbo-state-danger: #ff5555;
|
|
15
|
+
--turbo-border-default: #44475a;
|
|
16
|
+
--turbo-accent-link: #8be9fd;
|
|
17
|
+
--turbo-font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
18
|
+
--turbo-font-mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
19
|
+
--turbo-heading-h1: #ff79c6;
|
|
20
|
+
--turbo-heading-h2: #bd93f9;
|
|
21
|
+
--turbo-heading-h3: #8be9fd;
|
|
22
|
+
--turbo-heading-h4: #50fa7b;
|
|
23
|
+
--turbo-heading-h5: #ffb86c;
|
|
24
|
+
--turbo-heading-h6: #f1fa8c;
|
|
25
|
+
--turbo-body-primary: #f8f8f2;
|
|
26
|
+
--turbo-body-secondary: #6272a4;
|
|
27
|
+
--turbo-link-default: #8be9fd;
|
|
28
|
+
--turbo-selection-fg: #f8f8f2;
|
|
29
|
+
--turbo-selection-bg: #44475a;
|
|
30
|
+
--turbo-blockquote-border: #bd93f9;
|
|
31
|
+
--turbo-blockquote-fg: #6272a4;
|
|
32
|
+
--turbo-blockquote-bg: #21222c;
|
|
33
|
+
--turbo-code-inline-fg: #50fa7b;
|
|
34
|
+
--turbo-code-inline-bg: #21222c;
|
|
35
|
+
--turbo-code-block-fg: #f8f8f2;
|
|
36
|
+
--turbo-code-block-bg: #21222c;
|
|
37
|
+
--turbo-table-border: #44475a;
|
|
38
|
+
--turbo-table-stripe: #21222c;
|
|
39
|
+
--turbo-table-thead-bg: #44475a;
|
|
40
|
+
--turbo-table-cell-bg: #282a36;
|
|
41
|
+
--turbo-table-header-fg: #f8f8f2;
|
|
42
|
+
--turbo-spacing-xs: 0.25rem;
|
|
43
|
+
--turbo-spacing-sm: 0.5rem;
|
|
44
|
+
--turbo-spacing-md: 1rem;
|
|
45
|
+
--turbo-spacing-lg: 1.5rem;
|
|
46
|
+
--turbo-spacing-xl: 2rem;
|
|
47
|
+
--turbo-elevation-none: none;
|
|
48
|
+
--turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
49
|
+
--turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
50
|
+
--turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
51
|
+
--turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
52
|
+
--turbo-animation-duration-fast: 150ms;
|
|
53
|
+
--turbo-animation-duration-normal: 300ms;
|
|
54
|
+
--turbo-animation-duration-slow: 500ms;
|
|
55
|
+
--turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
56
|
+
--turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1);
|
|
57
|
+
--turbo-opacity-disabled: 0.5;
|
|
58
|
+
--turbo-opacity-hover: 0.8;
|
|
59
|
+
--turbo-opacity-pressed: 0.6;
|
|
60
|
+
--turbo-card-bg: #21222c;
|
|
61
|
+
--turbo-card-border: #6272a4;
|
|
62
|
+
--turbo-modal-bg: rgba(40, 42, 54, 0.9);
|
|
63
|
+
--turbo-modal-card-bg: #21222c;
|
|
64
|
+
--turbo-dropdown-bg: #21222c;
|
|
65
|
+
--turbo-dropdown-border: #6272a4;
|
|
66
|
+
--turbo-dropdown-item-hover: #2e303e;
|
|
67
|
+
--turbo-syntax-fg: #f8f8f2;
|
|
68
|
+
--turbo-syntax-bg: #21222c;
|
|
69
|
+
--turbo-syntax-comment: #6272a4;
|
|
70
|
+
--turbo-syntax-keyword: #bd93f9;
|
|
71
|
+
--turbo-syntax-string: #50fa7b;
|
|
72
|
+
--turbo-syntax-number: #f1fa8c;
|
|
73
|
+
--turbo-syntax-function: #8be9fd;
|
|
74
|
+
--turbo-syntax-type: #bd93f9;
|
|
75
|
+
--turbo-syntax-variable: #f8f8f2;
|
|
76
|
+
--turbo-syntax-operator: #6272a4;
|
|
77
|
+
--turbo-syntax-punctuation: #6272a4;
|
|
78
|
+
--turbo-syntax-tag: #ff5555;
|
|
79
|
+
--turbo-syntax-attribute: #8be9fd;
|
|
80
|
+
--turbo-syntax-value: #50fa7b;
|
|
81
|
+
--turbo-syntax-error: #ff5555;
|
|
82
|
+
--turbo-syntax-deleted: #ff5555;
|
|
83
|
+
--turbo-syntax-inserted: #50fa7b;
|
|
84
|
+
color-scheme: dark;
|
|
85
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
@import url('https://github.githubassets.com/assets/mona-sans-webfont.woff2');
|
|
2
|
+
@import url('https://github.githubassets.com/assets/hubot-sans-webfont.woff2');
|
|
3
|
+
|
|
4
|
+
[data-theme="github-dark"] {
|
|
5
|
+
--turbo-bg-base: #0d1117;
|
|
6
|
+
--turbo-bg-surface: #151b23;
|
|
7
|
+
--turbo-bg-overlay: #010409;
|
|
8
|
+
--turbo-text-primary: #f0f6fc;
|
|
9
|
+
--turbo-text-secondary: #9198a1;
|
|
10
|
+
--turbo-text-inverse: #ffffff;
|
|
11
|
+
--turbo-brand-primary: #1f6feb;
|
|
12
|
+
--turbo-state-info: #4493f8;
|
|
13
|
+
--turbo-state-success: #3fb950;
|
|
14
|
+
--turbo-state-warning: #d29922;
|
|
15
|
+
--turbo-state-danger: #f85149;
|
|
16
|
+
--turbo-border-default: #3d444d;
|
|
17
|
+
--turbo-accent-link: #4493f8;
|
|
18
|
+
--turbo-font-sans: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
19
|
+
--turbo-font-mono: "Hubot Sans", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Liberation Mono", monospace;
|
|
20
|
+
--turbo-heading-h1: #3fb950;
|
|
21
|
+
--turbo-heading-h2: #4493f8;
|
|
22
|
+
--turbo-heading-h3: #1f6feb;
|
|
23
|
+
--turbo-heading-h4: #d29922;
|
|
24
|
+
--turbo-heading-h5: #3fb950;
|
|
25
|
+
--turbo-heading-h6: #f85149;
|
|
26
|
+
--turbo-body-primary: #f0f6fc;
|
|
27
|
+
--turbo-body-secondary: #9198a1;
|
|
28
|
+
--turbo-link-default: #4493f8;
|
|
29
|
+
--turbo-selection-fg: #f0f6fc;
|
|
30
|
+
--turbo-selection-bg: #264f78;
|
|
31
|
+
--turbo-blockquote-border: #3d444d;
|
|
32
|
+
--turbo-blockquote-fg: #9198a1;
|
|
33
|
+
--turbo-blockquote-bg: #151b23;
|
|
34
|
+
--turbo-code-inline-fg: #f0f6fc;
|
|
35
|
+
--turbo-code-inline-bg: #151b23;
|
|
36
|
+
--turbo-code-block-fg: #f0f6fc;
|
|
37
|
+
--turbo-code-block-bg: #151b23;
|
|
38
|
+
--turbo-table-border: #3d444d;
|
|
39
|
+
--turbo-table-stripe: #151b23;
|
|
40
|
+
--turbo-table-thead-bg: #151b23;
|
|
41
|
+
--turbo-table-cell-bg: #0d1117;
|
|
42
|
+
--turbo-table-header-fg: #f0f6fc;
|
|
43
|
+
--turbo-syntax-fg: #f0f6fc;
|
|
44
|
+
--turbo-syntax-bg: #151b23;
|
|
45
|
+
--turbo-syntax-comment: #9198a1;
|
|
46
|
+
--turbo-syntax-keyword: #1f6feb;
|
|
47
|
+
--turbo-syntax-string: #3fb950;
|
|
48
|
+
--turbo-syntax-number: #d29922;
|
|
49
|
+
--turbo-syntax-function: #4493f8;
|
|
50
|
+
--turbo-syntax-type: #1f6feb;
|
|
51
|
+
--turbo-syntax-variable: #f0f6fc;
|
|
52
|
+
--turbo-syntax-operator: #9198a1;
|
|
53
|
+
--turbo-syntax-punctuation: #9198a1;
|
|
54
|
+
--turbo-syntax-tag: #f85149;
|
|
55
|
+
--turbo-syntax-attribute: #4493f8;
|
|
56
|
+
--turbo-syntax-value: #3fb950;
|
|
57
|
+
--turbo-syntax-error: #f85149;
|
|
58
|
+
--turbo-syntax-deleted: #f85149;
|
|
59
|
+
--turbo-syntax-inserted: #3fb950;
|
|
60
|
+
color-scheme: dark;
|
|
61
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
@import url('https://github.githubassets.com/assets/mona-sans-webfont.woff2');
|
|
2
|
+
@import url('https://github.githubassets.com/assets/hubot-sans-webfont.woff2');
|
|
3
|
+
|
|
4
|
+
[data-theme="github-light"] {
|
|
5
|
+
--turbo-bg-base: #ffffff;
|
|
6
|
+
--turbo-bg-surface: #f6f8fa;
|
|
7
|
+
--turbo-bg-overlay: #f6f8fa;
|
|
8
|
+
--turbo-text-primary: #1f2328;
|
|
9
|
+
--turbo-text-secondary: #59636e;
|
|
10
|
+
--turbo-text-inverse: #ffffff;
|
|
11
|
+
--turbo-brand-primary: #0969da;
|
|
12
|
+
--turbo-state-info: #0969da;
|
|
13
|
+
--turbo-state-success: #1a7f37;
|
|
14
|
+
--turbo-state-warning: #9a6700;
|
|
15
|
+
--turbo-state-danger: #d1242f;
|
|
16
|
+
--turbo-border-default: #d1d9e0;
|
|
17
|
+
--turbo-accent-link: #0969da;
|
|
18
|
+
--turbo-font-sans: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
19
|
+
--turbo-font-mono: "Hubot Sans", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Liberation Mono", monospace;
|
|
20
|
+
--turbo-heading-h1: #1a7f37;
|
|
21
|
+
--turbo-heading-h2: #0969da;
|
|
22
|
+
--turbo-heading-h3: #0969da;
|
|
23
|
+
--turbo-heading-h4: #9a6700;
|
|
24
|
+
--turbo-heading-h5: #1a7f37;
|
|
25
|
+
--turbo-heading-h6: #d1242f;
|
|
26
|
+
--turbo-body-primary: #1f2328;
|
|
27
|
+
--turbo-body-secondary: #59636e;
|
|
28
|
+
--turbo-link-default: #0969da;
|
|
29
|
+
--turbo-selection-fg: #1f2328;
|
|
30
|
+
--turbo-selection-bg: #b6e3ff;
|
|
31
|
+
--turbo-blockquote-border: #d1d9e0;
|
|
32
|
+
--turbo-blockquote-fg: #59636e;
|
|
33
|
+
--turbo-blockquote-bg: #f6f8fa;
|
|
34
|
+
--turbo-code-inline-fg: #1f2328;
|
|
35
|
+
--turbo-code-inline-bg: #f6f8fa;
|
|
36
|
+
--turbo-code-block-fg: #1f2328;
|
|
37
|
+
--turbo-code-block-bg: #f6f8fa;
|
|
38
|
+
--turbo-table-border: #d1d9e0;
|
|
39
|
+
--turbo-table-stripe: #f6f8fa;
|
|
40
|
+
--turbo-table-thead-bg: #f6f8fa;
|
|
41
|
+
--turbo-table-cell-bg: #ffffff;
|
|
42
|
+
--turbo-table-header-fg: #1f2328;
|
|
43
|
+
--turbo-syntax-fg: #1f2328;
|
|
44
|
+
--turbo-syntax-bg: #f6f8fa;
|
|
45
|
+
--turbo-syntax-comment: #59636e;
|
|
46
|
+
--turbo-syntax-keyword: #0969da;
|
|
47
|
+
--turbo-syntax-string: #1a7f37;
|
|
48
|
+
--turbo-syntax-number: #9a6700;
|
|
49
|
+
--turbo-syntax-function: #0969da;
|
|
50
|
+
--turbo-syntax-type: #0969da;
|
|
51
|
+
--turbo-syntax-variable: #1f2328;
|
|
52
|
+
--turbo-syntax-operator: #59636e;
|
|
53
|
+
--turbo-syntax-punctuation: #59636e;
|
|
54
|
+
--turbo-syntax-tag: #d1242f;
|
|
55
|
+
--turbo-syntax-attribute: #0969da;
|
|
56
|
+
--turbo-syntax-value: #1a7f37;
|
|
57
|
+
--turbo-syntax-error: #d1242f;
|
|
58
|
+
--turbo-syntax-deleted: #d1242f;
|
|
59
|
+
--turbo-syntax-inserted: #1a7f37;
|
|
60
|
+
color-scheme: light;
|
|
61
|
+
}
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
/* Turbo Themes - Minimal Reset */
|
|
2
|
+
*,
|
|
3
|
+
*::before,
|
|
4
|
+
*::after {
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
body,
|
|
9
|
+
h1,
|
|
10
|
+
h2,
|
|
11
|
+
h3,
|
|
12
|
+
h4,
|
|
13
|
+
h5,
|
|
14
|
+
h6,
|
|
15
|
+
p,
|
|
16
|
+
figure,
|
|
17
|
+
blockquote,
|
|
18
|
+
dl,
|
|
19
|
+
dd {
|
|
20
|
+
margin: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
html {
|
|
24
|
+
-webkit-text-size-adjust: 100%;
|
|
25
|
+
-moz-text-size-adjust: 100%;
|
|
26
|
+
text-size-adjust: 100%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
body {
|
|
30
|
+
min-height: 100vh;
|
|
31
|
+
line-height: 1.5;
|
|
32
|
+
-webkit-font-smoothing: antialiased;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
img,
|
|
36
|
+
picture,
|
|
37
|
+
video,
|
|
38
|
+
canvas,
|
|
39
|
+
svg {
|
|
40
|
+
display: block;
|
|
41
|
+
max-width: 100%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
input,
|
|
45
|
+
button,
|
|
46
|
+
textarea,
|
|
47
|
+
select {
|
|
48
|
+
font: inherit;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Turbo Themes - Base Semantic Styles */
|
|
52
|
+
|
|
53
|
+
/* Root & Body */
|
|
54
|
+
:root {
|
|
55
|
+
color-scheme: light dark;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
body {
|
|
59
|
+
font-family: var(--turbo-font-sans, system-ui, -apple-system, sans-serif);
|
|
60
|
+
color: var(--turbo-text-primary, #000);
|
|
61
|
+
background-color: var(--turbo-bg-base, #fff);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Typography */
|
|
65
|
+
h1, h2, h3, h4, h5, h6 {
|
|
66
|
+
line-height: 1.2;
|
|
67
|
+
font-weight: 600;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
h1 { color: var(--turbo-heading-h1, var(--turbo-text-primary)); font-size: 2.5rem; }
|
|
71
|
+
h2 { color: var(--turbo-heading-h2, var(--turbo-text-primary)); font-size: 2rem; }
|
|
72
|
+
h3 { color: var(--turbo-heading-h3, var(--turbo-text-primary)); font-size: 1.75rem; }
|
|
73
|
+
h4 { color: var(--turbo-heading-h4, var(--turbo-text-primary)); font-size: 1.5rem; }
|
|
74
|
+
h5 { color: var(--turbo-heading-h5, var(--turbo-text-primary)); font-size: 1.25rem; }
|
|
75
|
+
h6 { color: var(--turbo-heading-h6, var(--turbo-text-primary)); font-size: 1rem; }
|
|
76
|
+
|
|
77
|
+
p {
|
|
78
|
+
color: var(--turbo-body-primary, var(--turbo-text-primary));
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* Links */
|
|
82
|
+
a {
|
|
83
|
+
color: var(--turbo-accent-link, var(--turbo-brand-primary));
|
|
84
|
+
text-decoration: none;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
a:hover {
|
|
88
|
+
text-decoration: underline;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Selection */
|
|
92
|
+
::selection {
|
|
93
|
+
color: var(--turbo-selection-fg, #fff);
|
|
94
|
+
background-color: var(--turbo-selection-bg, #3273dc);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* Code */
|
|
98
|
+
code,
|
|
99
|
+
kbd,
|
|
100
|
+
samp,
|
|
101
|
+
pre {
|
|
102
|
+
font-family: var(--turbo-font-mono, ui-monospace, monospace);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
code {
|
|
106
|
+
padding: 0.125rem 0.25rem;
|
|
107
|
+
color: var(--turbo-code-inline-fg, #e83e8c);
|
|
108
|
+
background-color: var(--turbo-code-inline-bg, #f8f9fa);
|
|
109
|
+
border-radius: 0.25rem;
|
|
110
|
+
font-size: 0.875em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
pre {
|
|
114
|
+
padding: 1rem;
|
|
115
|
+
color: var(--turbo-code-block-fg, #f8f9fa);
|
|
116
|
+
background-color: var(--turbo-code-block-bg, #2b2b2b);
|
|
117
|
+
border-radius: 0.5rem;
|
|
118
|
+
overflow-x: auto;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
pre code {
|
|
122
|
+
padding: 0;
|
|
123
|
+
background-color: transparent;
|
|
124
|
+
font-size: inherit;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* Blockquote */
|
|
128
|
+
blockquote {
|
|
129
|
+
margin: 1rem 0;
|
|
130
|
+
padding: 0.5rem 1rem;
|
|
131
|
+
color: var(--turbo-blockquote-fg);
|
|
132
|
+
background-color: var(--turbo-blockquote-bg);
|
|
133
|
+
border-left: 4px solid var(--turbo-blockquote-border);
|
|
134
|
+
border-radius: 0 0.25rem 0.25rem 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* Tables */
|
|
138
|
+
table {
|
|
139
|
+
width: 100%;
|
|
140
|
+
border-collapse: collapse;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
th,
|
|
144
|
+
td {
|
|
145
|
+
padding: 0.75rem;
|
|
146
|
+
text-align: left;
|
|
147
|
+
border: 1px solid var(--turbo-table-border);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
th {
|
|
151
|
+
color: var(--turbo-table-header-fg, var(--turbo-text-primary));
|
|
152
|
+
background-color: var(--turbo-table-thead-bg);
|
|
153
|
+
font-weight: 600;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
tr:nth-child(even) td {
|
|
157
|
+
background-color: var(--turbo-table-stripe);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/* Form Elements */
|
|
161
|
+
button,
|
|
162
|
+
input,
|
|
163
|
+
select,
|
|
164
|
+
textarea {
|
|
165
|
+
border: 1px solid var(--turbo-border-default);
|
|
166
|
+
border-radius: 0.25rem;
|
|
167
|
+
background-color: var(--turbo-bg-surface);
|
|
168
|
+
color: var(--turbo-text-primary);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
button {
|
|
172
|
+
padding: 0.5rem 1rem;
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
background-color: var(--turbo-brand-primary);
|
|
175
|
+
color: var(--turbo-text-inverse);
|
|
176
|
+
border: none;
|
|
177
|
+
font-weight: 500;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
button:hover {
|
|
181
|
+
opacity: 0.9;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
button:disabled {
|
|
185
|
+
opacity: 0.5;
|
|
186
|
+
cursor: not-allowed;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
input,
|
|
190
|
+
select,
|
|
191
|
+
textarea {
|
|
192
|
+
padding: 0.5rem 0.75rem;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
button:focus-visible,
|
|
196
|
+
input:focus,
|
|
197
|
+
select:focus,
|
|
198
|
+
textarea:focus {
|
|
199
|
+
outline: 2px solid var(--turbo-brand-primary);
|
|
200
|
+
outline-offset: 2px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/* Utility classes */
|
|
204
|
+
.surface {
|
|
205
|
+
background-color: var(--turbo-bg-surface);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.surface-alt {
|
|
209
|
+
background-color: var(--turbo-bg-overlay);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.text-primary {
|
|
213
|
+
color: var(--turbo-text-primary);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.text-secondary {
|
|
217
|
+
color: var(--turbo-text-secondary);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.text-success {
|
|
221
|
+
color: var(--turbo-state-success);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.text-warning {
|
|
225
|
+
color: var(--turbo-state-warning);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.text-danger {
|
|
229
|
+
color: var(--turbo-state-danger);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.text-info {
|
|
233
|
+
color: var(--turbo-state-info);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.border {
|
|
237
|
+
border: 1px solid var(--turbo-border-default);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.rounded {
|
|
241
|
+
border-radius: 0.25rem;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.rounded-lg {
|
|
245
|
+
border-radius: 0.5rem;
|
|
246
|
+
}
|