@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,727 @@
|
|
|
1
|
+
/* Turbo Themes - Pure CSS Custom Properties */
|
|
2
|
+
/* Generated automatically - do not edit */
|
|
3
|
+
|
|
4
|
+
:root {
|
|
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
|
+
|
|
61
|
+
/* Spacing */
|
|
62
|
+
--space-xs: 0.25rem;
|
|
63
|
+
--space-sm: 0.5rem;
|
|
64
|
+
--space-md: 1rem;
|
|
65
|
+
--space-lg: 1.5rem;
|
|
66
|
+
--space-xl: 2rem;
|
|
67
|
+
--space-2xl: 3rem;
|
|
68
|
+
--space-3xl: 4rem;
|
|
69
|
+
--space-4xl: 6rem;
|
|
70
|
+
|
|
71
|
+
/* Border Radius */
|
|
72
|
+
--radius-sm: 0.5rem;
|
|
73
|
+
--radius-md: 0.75rem;
|
|
74
|
+
--radius-lg: 1rem;
|
|
75
|
+
--radius-xl: 1.5rem;
|
|
76
|
+
--radius-2xl: 2rem;
|
|
77
|
+
--radius-full: 9999px;
|
|
78
|
+
|
|
79
|
+
/* Shadows */
|
|
80
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
81
|
+
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
82
|
+
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
83
|
+
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
|
|
84
|
+
--shadow-glow: 0 0 30px color-mix(in srgb, var(--turbo-brand-primary) 30%, transparent);
|
|
85
|
+
--shadow-glow-sm: 0 0 15px color-mix(in srgb, var(--turbo-brand-primary) 20%, transparent);
|
|
86
|
+
|
|
87
|
+
/* Transitions */
|
|
88
|
+
--transition-fast: 120ms ease-out;
|
|
89
|
+
--transition-normal: 200ms ease-out;
|
|
90
|
+
--transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
91
|
+
|
|
92
|
+
/* Gradients (theme-aware) */
|
|
93
|
+
--gradient-primary: linear-gradient(135deg, var(--turbo-brand-primary), var(--turbo-state-info));
|
|
94
|
+
--gradient-surface: linear-gradient(180deg, var(--turbo-bg-surface), var(--turbo-bg-base));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');
|
|
98
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap');
|
|
99
|
+
|
|
100
|
+
[data-theme="bulma-dark"] {
|
|
101
|
+
--turbo-bg-base: #141414;
|
|
102
|
+
--turbo-bg-surface: #1f1f1f;
|
|
103
|
+
--turbo-bg-overlay: #2b2b2b;
|
|
104
|
+
--turbo-text-primary: #f5f5f5;
|
|
105
|
+
--turbo-text-secondary: #dbdbdb;
|
|
106
|
+
--turbo-text-inverse: #141414;
|
|
107
|
+
--turbo-brand-primary: #00d1b2;
|
|
108
|
+
--turbo-state-info: #3e8ed0;
|
|
109
|
+
--turbo-state-success: #48c78e;
|
|
110
|
+
--turbo-state-warning: #ffe08a;
|
|
111
|
+
--turbo-state-danger: #f14668;
|
|
112
|
+
--turbo-border-default: #363636;
|
|
113
|
+
--turbo-accent-link: #485fc7;
|
|
114
|
+
--turbo-font-sans: "Nunito Sans", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
115
|
+
--turbo-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
116
|
+
--turbo-heading-h1: #00d1b2;
|
|
117
|
+
--turbo-heading-h2: #7289da;
|
|
118
|
+
--turbo-heading-h3: #5dade2;
|
|
119
|
+
--turbo-heading-h4: #58d68d;
|
|
120
|
+
--turbo-heading-h5: #f7dc6f;
|
|
121
|
+
--turbo-heading-h6: #f1948a;
|
|
122
|
+
--turbo-body-primary: #dbdbdb;
|
|
123
|
+
--turbo-body-secondary: #b5b5b5;
|
|
124
|
+
--turbo-link-default: #485fc7;
|
|
125
|
+
--turbo-selection-fg: #f5f5f5;
|
|
126
|
+
--turbo-selection-bg: #3273dc;
|
|
127
|
+
--turbo-blockquote-border: #363636;
|
|
128
|
+
--turbo-blockquote-fg: #dbdbdb;
|
|
129
|
+
--turbo-blockquote-bg: #1f1f1f;
|
|
130
|
+
--turbo-code-inline-fg: #f14668;
|
|
131
|
+
--turbo-code-inline-bg: #2b2b2b;
|
|
132
|
+
--turbo-code-block-fg: #f5f5f5;
|
|
133
|
+
--turbo-code-block-bg: #2b2b2b;
|
|
134
|
+
--turbo-table-border: #404040;
|
|
135
|
+
--turbo-table-stripe: #1c1c1c;
|
|
136
|
+
--turbo-table-thead-bg: #2d2d2d;
|
|
137
|
+
--turbo-table-cell-bg: #1a1a1a;
|
|
138
|
+
--turbo-table-header-fg: #f5f5f5;
|
|
139
|
+
--turbo-spacing-xs: 0.25rem;
|
|
140
|
+
--turbo-spacing-sm: 0.5rem;
|
|
141
|
+
--turbo-spacing-md: 1rem;
|
|
142
|
+
--turbo-spacing-lg: 1.5rem;
|
|
143
|
+
--turbo-spacing-xl: 2rem;
|
|
144
|
+
--turbo-elevation-none: none;
|
|
145
|
+
--turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
146
|
+
--turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
147
|
+
--turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
148
|
+
--turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
149
|
+
--turbo-animation-duration-fast: 150ms;
|
|
150
|
+
--turbo-animation-duration-normal: 300ms;
|
|
151
|
+
--turbo-animation-duration-slow: 500ms;
|
|
152
|
+
--turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
153
|
+
--turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1);
|
|
154
|
+
--turbo-opacity-disabled: 0.5;
|
|
155
|
+
--turbo-opacity-hover: 0.8;
|
|
156
|
+
--turbo-opacity-pressed: 0.6;
|
|
157
|
+
--turbo-card-bg: #1c1c1c;
|
|
158
|
+
--turbo-card-border: #3a3a3a;
|
|
159
|
+
--turbo-modal-bg: rgba(0, 0, 0, 0.86);
|
|
160
|
+
--turbo-modal-card-bg: #1c1c1c;
|
|
161
|
+
--turbo-dropdown-bg: #1c1c1c;
|
|
162
|
+
--turbo-dropdown-border: #404040;
|
|
163
|
+
--turbo-dropdown-item-hover: #2a2a2a;
|
|
164
|
+
--turbo-syntax-fg: #f5f5f5;
|
|
165
|
+
--turbo-syntax-bg: #2b2b2b;
|
|
166
|
+
--turbo-syntax-comment: #dbdbdb;
|
|
167
|
+
--turbo-syntax-keyword: #00d1b2;
|
|
168
|
+
--turbo-syntax-string: #48c78e;
|
|
169
|
+
--turbo-syntax-number: #ffe08a;
|
|
170
|
+
--turbo-syntax-function: #3e8ed0;
|
|
171
|
+
--turbo-syntax-type: #00d1b2;
|
|
172
|
+
--turbo-syntax-variable: #f5f5f5;
|
|
173
|
+
--turbo-syntax-operator: #dbdbdb;
|
|
174
|
+
--turbo-syntax-punctuation: #dbdbdb;
|
|
175
|
+
--turbo-syntax-tag: #f14668;
|
|
176
|
+
--turbo-syntax-attribute: #3e8ed0;
|
|
177
|
+
--turbo-syntax-value: #48c78e;
|
|
178
|
+
--turbo-syntax-error: #f14668;
|
|
179
|
+
--turbo-syntax-deleted: #f14668;
|
|
180
|
+
--turbo-syntax-inserted: #48c78e;
|
|
181
|
+
color-scheme: dark;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');
|
|
185
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap');
|
|
186
|
+
|
|
187
|
+
[data-theme="bulma-light"] {
|
|
188
|
+
--turbo-bg-base: #ffffff;
|
|
189
|
+
--turbo-bg-surface: #f5f5f5;
|
|
190
|
+
--turbo-bg-overlay: #eeeeee;
|
|
191
|
+
--turbo-text-primary: #363636;
|
|
192
|
+
--turbo-text-secondary: #4a4a4a;
|
|
193
|
+
--turbo-text-inverse: #ffffff;
|
|
194
|
+
--turbo-brand-primary: #00d1b2;
|
|
195
|
+
--turbo-state-info: #3e8ed0;
|
|
196
|
+
--turbo-state-success: #48c78e;
|
|
197
|
+
--turbo-state-warning: #ffe08a;
|
|
198
|
+
--turbo-state-danger: #f14668;
|
|
199
|
+
--turbo-border-default: #dbdbdb;
|
|
200
|
+
--turbo-accent-link: #485fc7;
|
|
201
|
+
--turbo-font-sans: "Nunito Sans", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
202
|
+
--turbo-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
203
|
+
--turbo-heading-h1: #00d1b2;
|
|
204
|
+
--turbo-heading-h2: #485fc7;
|
|
205
|
+
--turbo-heading-h3: #3e8ed0;
|
|
206
|
+
--turbo-heading-h4: #48c78e;
|
|
207
|
+
--turbo-heading-h5: #ffe08a;
|
|
208
|
+
--turbo-heading-h6: #f14668;
|
|
209
|
+
--turbo-body-primary: #4a4a4a;
|
|
210
|
+
--turbo-body-secondary: #6b6b6b;
|
|
211
|
+
--turbo-link-default: #485fc7;
|
|
212
|
+
--turbo-selection-fg: #363636;
|
|
213
|
+
--turbo-selection-bg: #b5d5ff;
|
|
214
|
+
--turbo-blockquote-border: #dbdbdb;
|
|
215
|
+
--turbo-blockquote-fg: #4a4a4a;
|
|
216
|
+
--turbo-blockquote-bg: #f5f5f5;
|
|
217
|
+
--turbo-code-inline-fg: #f14668;
|
|
218
|
+
--turbo-code-inline-bg: #f5f5f5;
|
|
219
|
+
--turbo-code-block-fg: #363636;
|
|
220
|
+
--turbo-code-block-bg: #f5f5f5;
|
|
221
|
+
--turbo-table-border: #dbdbdb;
|
|
222
|
+
--turbo-table-stripe: #fafafa;
|
|
223
|
+
--turbo-table-thead-bg: #f0f0f0;
|
|
224
|
+
--turbo-table-cell-bg: #ffffff;
|
|
225
|
+
--turbo-table-header-fg: #363636;
|
|
226
|
+
--turbo-spacing-xs: 0.25rem;
|
|
227
|
+
--turbo-spacing-sm: 0.5rem;
|
|
228
|
+
--turbo-spacing-md: 1rem;
|
|
229
|
+
--turbo-spacing-lg: 1.5rem;
|
|
230
|
+
--turbo-spacing-xl: 2rem;
|
|
231
|
+
--turbo-elevation-none: none;
|
|
232
|
+
--turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
233
|
+
--turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
234
|
+
--turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
235
|
+
--turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
236
|
+
--turbo-animation-duration-fast: 150ms;
|
|
237
|
+
--turbo-animation-duration-normal: 300ms;
|
|
238
|
+
--turbo-animation-duration-slow: 500ms;
|
|
239
|
+
--turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
240
|
+
--turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1);
|
|
241
|
+
--turbo-opacity-disabled: 0.5;
|
|
242
|
+
--turbo-opacity-hover: 0.8;
|
|
243
|
+
--turbo-opacity-pressed: 0.6;
|
|
244
|
+
--turbo-card-bg: #ffffff;
|
|
245
|
+
--turbo-card-border: #d5d5d5;
|
|
246
|
+
--turbo-modal-bg: rgba(10, 10, 10, 0.86);
|
|
247
|
+
--turbo-modal-card-bg: #ffffff;
|
|
248
|
+
--turbo-dropdown-bg: #ffffff;
|
|
249
|
+
--turbo-dropdown-border: #dbdbdb;
|
|
250
|
+
--turbo-dropdown-item-hover: #f5f5f5;
|
|
251
|
+
--turbo-syntax-fg: #363636;
|
|
252
|
+
--turbo-syntax-bg: #f5f5f5;
|
|
253
|
+
--turbo-syntax-comment: #4a4a4a;
|
|
254
|
+
--turbo-syntax-keyword: #00d1b2;
|
|
255
|
+
--turbo-syntax-string: #48c78e;
|
|
256
|
+
--turbo-syntax-number: #ffe08a;
|
|
257
|
+
--turbo-syntax-function: #3e8ed0;
|
|
258
|
+
--turbo-syntax-type: #00d1b2;
|
|
259
|
+
--turbo-syntax-variable: #363636;
|
|
260
|
+
--turbo-syntax-operator: #4a4a4a;
|
|
261
|
+
--turbo-syntax-punctuation: #4a4a4a;
|
|
262
|
+
--turbo-syntax-tag: #f14668;
|
|
263
|
+
--turbo-syntax-attribute: #3e8ed0;
|
|
264
|
+
--turbo-syntax-value: #48c78e;
|
|
265
|
+
--turbo-syntax-error: #f14668;
|
|
266
|
+
--turbo-syntax-deleted: #f14668;
|
|
267
|
+
--turbo-syntax-inserted: #48c78e;
|
|
268
|
+
color-scheme: light;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
|
|
272
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
|
|
273
|
+
|
|
274
|
+
[data-theme="catppuccin-frappe"] {
|
|
275
|
+
--turbo-bg-base: #303446;
|
|
276
|
+
--turbo-bg-surface: #292c3c;
|
|
277
|
+
--turbo-bg-overlay: #232634;
|
|
278
|
+
--turbo-text-primary: #c6d0f5;
|
|
279
|
+
--turbo-text-secondary: #a5adce;
|
|
280
|
+
--turbo-text-inverse: #303446;
|
|
281
|
+
--turbo-brand-primary: #8caaee;
|
|
282
|
+
--turbo-state-info: #99d1db;
|
|
283
|
+
--turbo-state-success: #a6d189;
|
|
284
|
+
--turbo-state-warning: #e5c890;
|
|
285
|
+
--turbo-state-danger: #e78284;
|
|
286
|
+
--turbo-border-default: #737994;
|
|
287
|
+
--turbo-accent-link: #8caaee;
|
|
288
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
289
|
+
--turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
290
|
+
--turbo-heading-h1: #a6d189;
|
|
291
|
+
--turbo-heading-h2: #8caaee;
|
|
292
|
+
--turbo-heading-h3: #85c1dc;
|
|
293
|
+
--turbo-heading-h4: #e5c890;
|
|
294
|
+
--turbo-heading-h5: #ca9ee6;
|
|
295
|
+
--turbo-heading-h6: #e78284;
|
|
296
|
+
--turbo-body-primary: #c6d0f5;
|
|
297
|
+
--turbo-body-secondary: #a5adce;
|
|
298
|
+
--turbo-link-default: #8caaee;
|
|
299
|
+
--turbo-selection-fg: #c6d0f5;
|
|
300
|
+
--turbo-selection-bg: #838ba7;
|
|
301
|
+
--turbo-blockquote-border: #838ba7;
|
|
302
|
+
--turbo-blockquote-fg: #c6d0f5;
|
|
303
|
+
--turbo-blockquote-bg: #292c3c;
|
|
304
|
+
--turbo-code-inline-fg: #c6d0f5;
|
|
305
|
+
--turbo-code-inline-bg: #414559;
|
|
306
|
+
--turbo-code-block-fg: #c6d0f5;
|
|
307
|
+
--turbo-code-block-bg: #414559;
|
|
308
|
+
--turbo-table-border: #838ba7;
|
|
309
|
+
--turbo-table-stripe: #414559;
|
|
310
|
+
--turbo-table-thead-bg: #51576d;
|
|
311
|
+
--turbo-table-cell-bg: #303446;
|
|
312
|
+
--turbo-table-header-fg: #c6d0f5;
|
|
313
|
+
--turbo-syntax-fg: #c6d0f5;
|
|
314
|
+
--turbo-syntax-bg: #414559;
|
|
315
|
+
--turbo-syntax-comment: #a5adce;
|
|
316
|
+
--turbo-syntax-keyword: #8caaee;
|
|
317
|
+
--turbo-syntax-string: #a6d189;
|
|
318
|
+
--turbo-syntax-number: #e5c890;
|
|
319
|
+
--turbo-syntax-function: #99d1db;
|
|
320
|
+
--turbo-syntax-type: #8caaee;
|
|
321
|
+
--turbo-syntax-variable: #c6d0f5;
|
|
322
|
+
--turbo-syntax-operator: #a5adce;
|
|
323
|
+
--turbo-syntax-punctuation: #a5adce;
|
|
324
|
+
--turbo-syntax-tag: #e78284;
|
|
325
|
+
--turbo-syntax-attribute: #99d1db;
|
|
326
|
+
--turbo-syntax-value: #a6d189;
|
|
327
|
+
--turbo-syntax-error: #e78284;
|
|
328
|
+
--turbo-syntax-deleted: #e78284;
|
|
329
|
+
--turbo-syntax-inserted: #a6d189;
|
|
330
|
+
color-scheme: dark;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
|
|
334
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
|
|
335
|
+
|
|
336
|
+
[data-theme="catppuccin-latte"] {
|
|
337
|
+
--turbo-bg-base: #eff1f5;
|
|
338
|
+
--turbo-bg-surface: #e6e9ef;
|
|
339
|
+
--turbo-bg-overlay: #dce0e8;
|
|
340
|
+
--turbo-text-primary: #4c4f69;
|
|
341
|
+
--turbo-text-secondary: #6c6f85;
|
|
342
|
+
--turbo-text-inverse: #eff1f5;
|
|
343
|
+
--turbo-brand-primary: #1e66f5;
|
|
344
|
+
--turbo-state-info: #04a5e5;
|
|
345
|
+
--turbo-state-success: #40a02b;
|
|
346
|
+
--turbo-state-warning: #df8e1d;
|
|
347
|
+
--turbo-state-danger: #d20f39;
|
|
348
|
+
--turbo-border-default: #9ca0b0;
|
|
349
|
+
--turbo-accent-link: #1e66f5;
|
|
350
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
351
|
+
--turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
352
|
+
--turbo-heading-h1: #40a02b;
|
|
353
|
+
--turbo-heading-h2: #1e66f5;
|
|
354
|
+
--turbo-heading-h3: #209fb5;
|
|
355
|
+
--turbo-heading-h4: #df8e1d;
|
|
356
|
+
--turbo-heading-h5: #8839ef;
|
|
357
|
+
--turbo-heading-h6: #d20f39;
|
|
358
|
+
--turbo-body-primary: #4c4f69;
|
|
359
|
+
--turbo-body-secondary: #6c6f85;
|
|
360
|
+
--turbo-link-default: #1e66f5;
|
|
361
|
+
--turbo-selection-fg: #4c4f69;
|
|
362
|
+
--turbo-selection-bg: #8c8fa1;
|
|
363
|
+
--turbo-blockquote-border: #8c8fa1;
|
|
364
|
+
--turbo-blockquote-fg: #4c4f69;
|
|
365
|
+
--turbo-blockquote-bg: #e6e9ef;
|
|
366
|
+
--turbo-code-inline-fg: #4c4f69;
|
|
367
|
+
--turbo-code-inline-bg: #ccd0da;
|
|
368
|
+
--turbo-code-block-fg: #4c4f69;
|
|
369
|
+
--turbo-code-block-bg: #ccd0da;
|
|
370
|
+
--turbo-table-border: #8c8fa1;
|
|
371
|
+
--turbo-table-stripe: #ccd0da;
|
|
372
|
+
--turbo-table-thead-bg: #bcc0cc;
|
|
373
|
+
--turbo-table-cell-bg: #eff1f5;
|
|
374
|
+
--turbo-table-header-fg: #4c4f69;
|
|
375
|
+
--turbo-syntax-fg: #4c4f69;
|
|
376
|
+
--turbo-syntax-bg: #ccd0da;
|
|
377
|
+
--turbo-syntax-comment: #6c6f85;
|
|
378
|
+
--turbo-syntax-keyword: #1e66f5;
|
|
379
|
+
--turbo-syntax-string: #40a02b;
|
|
380
|
+
--turbo-syntax-number: #df8e1d;
|
|
381
|
+
--turbo-syntax-function: #04a5e5;
|
|
382
|
+
--turbo-syntax-type: #1e66f5;
|
|
383
|
+
--turbo-syntax-variable: #4c4f69;
|
|
384
|
+
--turbo-syntax-operator: #6c6f85;
|
|
385
|
+
--turbo-syntax-punctuation: #6c6f85;
|
|
386
|
+
--turbo-syntax-tag: #d20f39;
|
|
387
|
+
--turbo-syntax-attribute: #04a5e5;
|
|
388
|
+
--turbo-syntax-value: #40a02b;
|
|
389
|
+
--turbo-syntax-error: #d20f39;
|
|
390
|
+
--turbo-syntax-deleted: #d20f39;
|
|
391
|
+
--turbo-syntax-inserted: #40a02b;
|
|
392
|
+
color-scheme: light;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
|
|
396
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
|
|
397
|
+
|
|
398
|
+
[data-theme="catppuccin-macchiato"] {
|
|
399
|
+
--turbo-bg-base: #24273a;
|
|
400
|
+
--turbo-bg-surface: #1e2030;
|
|
401
|
+
--turbo-bg-overlay: #181926;
|
|
402
|
+
--turbo-text-primary: #cad3f5;
|
|
403
|
+
--turbo-text-secondary: #a5adcb;
|
|
404
|
+
--turbo-text-inverse: #24273a;
|
|
405
|
+
--turbo-brand-primary: #8aadf4;
|
|
406
|
+
--turbo-state-info: #91d7e3;
|
|
407
|
+
--turbo-state-success: #a6da95;
|
|
408
|
+
--turbo-state-warning: #eed49f;
|
|
409
|
+
--turbo-state-danger: #ed8796;
|
|
410
|
+
--turbo-border-default: #6e738d;
|
|
411
|
+
--turbo-accent-link: #8aadf4;
|
|
412
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
413
|
+
--turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
414
|
+
--turbo-heading-h1: #a6da95;
|
|
415
|
+
--turbo-heading-h2: #8aadf4;
|
|
416
|
+
--turbo-heading-h3: #7dc4e4;
|
|
417
|
+
--turbo-heading-h4: #eed49f;
|
|
418
|
+
--turbo-heading-h5: #c6a0f6;
|
|
419
|
+
--turbo-heading-h6: #ed8796;
|
|
420
|
+
--turbo-body-primary: #cad3f5;
|
|
421
|
+
--turbo-body-secondary: #a5adcb;
|
|
422
|
+
--turbo-link-default: #8aadf4;
|
|
423
|
+
--turbo-selection-fg: #cad3f5;
|
|
424
|
+
--turbo-selection-bg: #8087a2;
|
|
425
|
+
--turbo-blockquote-border: #8087a2;
|
|
426
|
+
--turbo-blockquote-fg: #cad3f5;
|
|
427
|
+
--turbo-blockquote-bg: #1e2030;
|
|
428
|
+
--turbo-code-inline-fg: #cad3f5;
|
|
429
|
+
--turbo-code-inline-bg: #363a4f;
|
|
430
|
+
--turbo-code-block-fg: #cad3f5;
|
|
431
|
+
--turbo-code-block-bg: #363a4f;
|
|
432
|
+
--turbo-table-border: #8087a2;
|
|
433
|
+
--turbo-table-stripe: #363a4f;
|
|
434
|
+
--turbo-table-thead-bg: #494d64;
|
|
435
|
+
--turbo-table-cell-bg: #24273a;
|
|
436
|
+
--turbo-table-header-fg: #cad3f5;
|
|
437
|
+
--turbo-syntax-fg: #cad3f5;
|
|
438
|
+
--turbo-syntax-bg: #363a4f;
|
|
439
|
+
--turbo-syntax-comment: #a5adcb;
|
|
440
|
+
--turbo-syntax-keyword: #8aadf4;
|
|
441
|
+
--turbo-syntax-string: #a6da95;
|
|
442
|
+
--turbo-syntax-number: #eed49f;
|
|
443
|
+
--turbo-syntax-function: #91d7e3;
|
|
444
|
+
--turbo-syntax-type: #8aadf4;
|
|
445
|
+
--turbo-syntax-variable: #cad3f5;
|
|
446
|
+
--turbo-syntax-operator: #a5adcb;
|
|
447
|
+
--turbo-syntax-punctuation: #a5adcb;
|
|
448
|
+
--turbo-syntax-tag: #ed8796;
|
|
449
|
+
--turbo-syntax-attribute: #91d7e3;
|
|
450
|
+
--turbo-syntax-value: #a6da95;
|
|
451
|
+
--turbo-syntax-error: #ed8796;
|
|
452
|
+
--turbo-syntax-deleted: #ed8796;
|
|
453
|
+
--turbo-syntax-inserted: #a6da95;
|
|
454
|
+
color-scheme: dark;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
|
|
458
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
|
|
459
|
+
|
|
460
|
+
[data-theme="catppuccin-mocha"] {
|
|
461
|
+
--turbo-bg-base: #1e1e2e;
|
|
462
|
+
--turbo-bg-surface: #181825;
|
|
463
|
+
--turbo-bg-overlay: #11111b;
|
|
464
|
+
--turbo-text-primary: #cdd6f4;
|
|
465
|
+
--turbo-text-secondary: #a6adc8;
|
|
466
|
+
--turbo-text-inverse: #1e1e2e;
|
|
467
|
+
--turbo-brand-primary: #89b4fa;
|
|
468
|
+
--turbo-state-info: #89dceb;
|
|
469
|
+
--turbo-state-success: #a6e3a1;
|
|
470
|
+
--turbo-state-warning: #f9e2af;
|
|
471
|
+
--turbo-state-danger: #f38ba8;
|
|
472
|
+
--turbo-border-default: #6c7086;
|
|
473
|
+
--turbo-accent-link: #89b4fa;
|
|
474
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
475
|
+
--turbo-font-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
476
|
+
--turbo-heading-h1: #a6e3a1;
|
|
477
|
+
--turbo-heading-h2: #89b4fa;
|
|
478
|
+
--turbo-heading-h3: #74c7ec;
|
|
479
|
+
--turbo-heading-h4: #f9e2af;
|
|
480
|
+
--turbo-heading-h5: #cba6f7;
|
|
481
|
+
--turbo-heading-h6: #f38ba8;
|
|
482
|
+
--turbo-body-primary: #cdd6f4;
|
|
483
|
+
--turbo-body-secondary: #a6adc8;
|
|
484
|
+
--turbo-link-default: #89b4fa;
|
|
485
|
+
--turbo-selection-fg: #cdd6f4;
|
|
486
|
+
--turbo-selection-bg: #7f849c;
|
|
487
|
+
--turbo-blockquote-border: #7f849c;
|
|
488
|
+
--turbo-blockquote-fg: #cdd6f4;
|
|
489
|
+
--turbo-blockquote-bg: #181825;
|
|
490
|
+
--turbo-code-inline-fg: #cdd6f4;
|
|
491
|
+
--turbo-code-inline-bg: #313244;
|
|
492
|
+
--turbo-code-block-fg: #cdd6f4;
|
|
493
|
+
--turbo-code-block-bg: #313244;
|
|
494
|
+
--turbo-table-border: #7f849c;
|
|
495
|
+
--turbo-table-stripe: #313244;
|
|
496
|
+
--turbo-table-thead-bg: #45475a;
|
|
497
|
+
--turbo-table-cell-bg: #1e1e2e;
|
|
498
|
+
--turbo-table-header-fg: #cdd6f4;
|
|
499
|
+
--turbo-syntax-fg: #cdd6f4;
|
|
500
|
+
--turbo-syntax-bg: #313244;
|
|
501
|
+
--turbo-syntax-comment: #a6adc8;
|
|
502
|
+
--turbo-syntax-keyword: #89b4fa;
|
|
503
|
+
--turbo-syntax-string: #a6e3a1;
|
|
504
|
+
--turbo-syntax-number: #f9e2af;
|
|
505
|
+
--turbo-syntax-function: #89dceb;
|
|
506
|
+
--turbo-syntax-type: #89b4fa;
|
|
507
|
+
--turbo-syntax-variable: #cdd6f4;
|
|
508
|
+
--turbo-syntax-operator: #a6adc8;
|
|
509
|
+
--turbo-syntax-punctuation: #a6adc8;
|
|
510
|
+
--turbo-syntax-tag: #f38ba8;
|
|
511
|
+
--turbo-syntax-attribute: #89dceb;
|
|
512
|
+
--turbo-syntax-value: #a6e3a1;
|
|
513
|
+
--turbo-syntax-error: #f38ba8;
|
|
514
|
+
--turbo-syntax-deleted: #f38ba8;
|
|
515
|
+
--turbo-syntax-inserted: #a6e3a1;
|
|
516
|
+
color-scheme: dark;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');
|
|
520
|
+
|
|
521
|
+
[data-theme="dracula"] {
|
|
522
|
+
--turbo-bg-base: #282a36;
|
|
523
|
+
--turbo-bg-surface: #21222c;
|
|
524
|
+
--turbo-bg-overlay: #44475a;
|
|
525
|
+
--turbo-text-primary: #f8f8f2;
|
|
526
|
+
--turbo-text-secondary: #6272a4;
|
|
527
|
+
--turbo-text-inverse: #282a36;
|
|
528
|
+
--turbo-brand-primary: #bd93f9;
|
|
529
|
+
--turbo-state-info: #8be9fd;
|
|
530
|
+
--turbo-state-success: #50fa7b;
|
|
531
|
+
--turbo-state-warning: #f1fa8c;
|
|
532
|
+
--turbo-state-danger: #ff5555;
|
|
533
|
+
--turbo-border-default: #44475a;
|
|
534
|
+
--turbo-accent-link: #8be9fd;
|
|
535
|
+
--turbo-font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
536
|
+
--turbo-font-mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
537
|
+
--turbo-heading-h1: #ff79c6;
|
|
538
|
+
--turbo-heading-h2: #bd93f9;
|
|
539
|
+
--turbo-heading-h3: #8be9fd;
|
|
540
|
+
--turbo-heading-h4: #50fa7b;
|
|
541
|
+
--turbo-heading-h5: #ffb86c;
|
|
542
|
+
--turbo-heading-h6: #f1fa8c;
|
|
543
|
+
--turbo-body-primary: #f8f8f2;
|
|
544
|
+
--turbo-body-secondary: #6272a4;
|
|
545
|
+
--turbo-link-default: #8be9fd;
|
|
546
|
+
--turbo-selection-fg: #f8f8f2;
|
|
547
|
+
--turbo-selection-bg: #44475a;
|
|
548
|
+
--turbo-blockquote-border: #bd93f9;
|
|
549
|
+
--turbo-blockquote-fg: #6272a4;
|
|
550
|
+
--turbo-blockquote-bg: #21222c;
|
|
551
|
+
--turbo-code-inline-fg: #50fa7b;
|
|
552
|
+
--turbo-code-inline-bg: #21222c;
|
|
553
|
+
--turbo-code-block-fg: #f8f8f2;
|
|
554
|
+
--turbo-code-block-bg: #21222c;
|
|
555
|
+
--turbo-table-border: #44475a;
|
|
556
|
+
--turbo-table-stripe: #21222c;
|
|
557
|
+
--turbo-table-thead-bg: #44475a;
|
|
558
|
+
--turbo-table-cell-bg: #282a36;
|
|
559
|
+
--turbo-table-header-fg: #f8f8f2;
|
|
560
|
+
--turbo-spacing-xs: 0.25rem;
|
|
561
|
+
--turbo-spacing-sm: 0.5rem;
|
|
562
|
+
--turbo-spacing-md: 1rem;
|
|
563
|
+
--turbo-spacing-lg: 1.5rem;
|
|
564
|
+
--turbo-spacing-xl: 2rem;
|
|
565
|
+
--turbo-elevation-none: none;
|
|
566
|
+
--turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
567
|
+
--turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
568
|
+
--turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
569
|
+
--turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
570
|
+
--turbo-animation-duration-fast: 150ms;
|
|
571
|
+
--turbo-animation-duration-normal: 300ms;
|
|
572
|
+
--turbo-animation-duration-slow: 500ms;
|
|
573
|
+
--turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
574
|
+
--turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1);
|
|
575
|
+
--turbo-opacity-disabled: 0.5;
|
|
576
|
+
--turbo-opacity-hover: 0.8;
|
|
577
|
+
--turbo-opacity-pressed: 0.6;
|
|
578
|
+
--turbo-card-bg: #21222c;
|
|
579
|
+
--turbo-card-border: #6272a4;
|
|
580
|
+
--turbo-modal-bg: rgba(40, 42, 54, 0.9);
|
|
581
|
+
--turbo-modal-card-bg: #21222c;
|
|
582
|
+
--turbo-dropdown-bg: #21222c;
|
|
583
|
+
--turbo-dropdown-border: #6272a4;
|
|
584
|
+
--turbo-dropdown-item-hover: #2e303e;
|
|
585
|
+
--turbo-syntax-fg: #f8f8f2;
|
|
586
|
+
--turbo-syntax-bg: #21222c;
|
|
587
|
+
--turbo-syntax-comment: #6272a4;
|
|
588
|
+
--turbo-syntax-keyword: #bd93f9;
|
|
589
|
+
--turbo-syntax-string: #50fa7b;
|
|
590
|
+
--turbo-syntax-number: #f1fa8c;
|
|
591
|
+
--turbo-syntax-function: #8be9fd;
|
|
592
|
+
--turbo-syntax-type: #bd93f9;
|
|
593
|
+
--turbo-syntax-variable: #f8f8f2;
|
|
594
|
+
--turbo-syntax-operator: #6272a4;
|
|
595
|
+
--turbo-syntax-punctuation: #6272a4;
|
|
596
|
+
--turbo-syntax-tag: #ff5555;
|
|
597
|
+
--turbo-syntax-attribute: #8be9fd;
|
|
598
|
+
--turbo-syntax-value: #50fa7b;
|
|
599
|
+
--turbo-syntax-error: #ff5555;
|
|
600
|
+
--turbo-syntax-deleted: #ff5555;
|
|
601
|
+
--turbo-syntax-inserted: #50fa7b;
|
|
602
|
+
color-scheme: dark;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
@import url('https://github.githubassets.com/assets/mona-sans-webfont.woff2');
|
|
606
|
+
@import url('https://github.githubassets.com/assets/hubot-sans-webfont.woff2');
|
|
607
|
+
|
|
608
|
+
[data-theme="github-dark"] {
|
|
609
|
+
--turbo-bg-base: #0d1117;
|
|
610
|
+
--turbo-bg-surface: #151b23;
|
|
611
|
+
--turbo-bg-overlay: #010409;
|
|
612
|
+
--turbo-text-primary: #f0f6fc;
|
|
613
|
+
--turbo-text-secondary: #9198a1;
|
|
614
|
+
--turbo-text-inverse: #ffffff;
|
|
615
|
+
--turbo-brand-primary: #1f6feb;
|
|
616
|
+
--turbo-state-info: #4493f8;
|
|
617
|
+
--turbo-state-success: #3fb950;
|
|
618
|
+
--turbo-state-warning: #d29922;
|
|
619
|
+
--turbo-state-danger: #f85149;
|
|
620
|
+
--turbo-border-default: #3d444d;
|
|
621
|
+
--turbo-accent-link: #4493f8;
|
|
622
|
+
--turbo-font-sans: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
623
|
+
--turbo-font-mono: "Hubot Sans", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Liberation Mono", monospace;
|
|
624
|
+
--turbo-heading-h1: #3fb950;
|
|
625
|
+
--turbo-heading-h2: #4493f8;
|
|
626
|
+
--turbo-heading-h3: #1f6feb;
|
|
627
|
+
--turbo-heading-h4: #d29922;
|
|
628
|
+
--turbo-heading-h5: #3fb950;
|
|
629
|
+
--turbo-heading-h6: #f85149;
|
|
630
|
+
--turbo-body-primary: #f0f6fc;
|
|
631
|
+
--turbo-body-secondary: #9198a1;
|
|
632
|
+
--turbo-link-default: #4493f8;
|
|
633
|
+
--turbo-selection-fg: #f0f6fc;
|
|
634
|
+
--turbo-selection-bg: #264f78;
|
|
635
|
+
--turbo-blockquote-border: #3d444d;
|
|
636
|
+
--turbo-blockquote-fg: #9198a1;
|
|
637
|
+
--turbo-blockquote-bg: #151b23;
|
|
638
|
+
--turbo-code-inline-fg: #f0f6fc;
|
|
639
|
+
--turbo-code-inline-bg: #151b23;
|
|
640
|
+
--turbo-code-block-fg: #f0f6fc;
|
|
641
|
+
--turbo-code-block-bg: #151b23;
|
|
642
|
+
--turbo-table-border: #3d444d;
|
|
643
|
+
--turbo-table-stripe: #151b23;
|
|
644
|
+
--turbo-table-thead-bg: #151b23;
|
|
645
|
+
--turbo-table-cell-bg: #0d1117;
|
|
646
|
+
--turbo-table-header-fg: #f0f6fc;
|
|
647
|
+
--turbo-syntax-fg: #f0f6fc;
|
|
648
|
+
--turbo-syntax-bg: #151b23;
|
|
649
|
+
--turbo-syntax-comment: #9198a1;
|
|
650
|
+
--turbo-syntax-keyword: #1f6feb;
|
|
651
|
+
--turbo-syntax-string: #3fb950;
|
|
652
|
+
--turbo-syntax-number: #d29922;
|
|
653
|
+
--turbo-syntax-function: #4493f8;
|
|
654
|
+
--turbo-syntax-type: #1f6feb;
|
|
655
|
+
--turbo-syntax-variable: #f0f6fc;
|
|
656
|
+
--turbo-syntax-operator: #9198a1;
|
|
657
|
+
--turbo-syntax-punctuation: #9198a1;
|
|
658
|
+
--turbo-syntax-tag: #f85149;
|
|
659
|
+
--turbo-syntax-attribute: #4493f8;
|
|
660
|
+
--turbo-syntax-value: #3fb950;
|
|
661
|
+
--turbo-syntax-error: #f85149;
|
|
662
|
+
--turbo-syntax-deleted: #f85149;
|
|
663
|
+
--turbo-syntax-inserted: #3fb950;
|
|
664
|
+
color-scheme: dark;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
@import url('https://github.githubassets.com/assets/mona-sans-webfont.woff2');
|
|
668
|
+
@import url('https://github.githubassets.com/assets/hubot-sans-webfont.woff2');
|
|
669
|
+
|
|
670
|
+
[data-theme="github-light"] {
|
|
671
|
+
--turbo-bg-base: #ffffff;
|
|
672
|
+
--turbo-bg-surface: #f6f8fa;
|
|
673
|
+
--turbo-bg-overlay: #f6f8fa;
|
|
674
|
+
--turbo-text-primary: #1f2328;
|
|
675
|
+
--turbo-text-secondary: #59636e;
|
|
676
|
+
--turbo-text-inverse: #ffffff;
|
|
677
|
+
--turbo-brand-primary: #0969da;
|
|
678
|
+
--turbo-state-info: #0969da;
|
|
679
|
+
--turbo-state-success: #1a7f37;
|
|
680
|
+
--turbo-state-warning: #9a6700;
|
|
681
|
+
--turbo-state-danger: #d1242f;
|
|
682
|
+
--turbo-border-default: #d1d9e0;
|
|
683
|
+
--turbo-accent-link: #0969da;
|
|
684
|
+
--turbo-font-sans: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
685
|
+
--turbo-font-mono: "Hubot Sans", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Liberation Mono", monospace;
|
|
686
|
+
--turbo-heading-h1: #1a7f37;
|
|
687
|
+
--turbo-heading-h2: #0969da;
|
|
688
|
+
--turbo-heading-h3: #0969da;
|
|
689
|
+
--turbo-heading-h4: #9a6700;
|
|
690
|
+
--turbo-heading-h5: #1a7f37;
|
|
691
|
+
--turbo-heading-h6: #d1242f;
|
|
692
|
+
--turbo-body-primary: #1f2328;
|
|
693
|
+
--turbo-body-secondary: #59636e;
|
|
694
|
+
--turbo-link-default: #0969da;
|
|
695
|
+
--turbo-selection-fg: #1f2328;
|
|
696
|
+
--turbo-selection-bg: #b6e3ff;
|
|
697
|
+
--turbo-blockquote-border: #d1d9e0;
|
|
698
|
+
--turbo-blockquote-fg: #59636e;
|
|
699
|
+
--turbo-blockquote-bg: #f6f8fa;
|
|
700
|
+
--turbo-code-inline-fg: #1f2328;
|
|
701
|
+
--turbo-code-inline-bg: #f6f8fa;
|
|
702
|
+
--turbo-code-block-fg: #1f2328;
|
|
703
|
+
--turbo-code-block-bg: #f6f8fa;
|
|
704
|
+
--turbo-table-border: #d1d9e0;
|
|
705
|
+
--turbo-table-stripe: #f6f8fa;
|
|
706
|
+
--turbo-table-thead-bg: #f6f8fa;
|
|
707
|
+
--turbo-table-cell-bg: #ffffff;
|
|
708
|
+
--turbo-table-header-fg: #1f2328;
|
|
709
|
+
--turbo-syntax-fg: #1f2328;
|
|
710
|
+
--turbo-syntax-bg: #f6f8fa;
|
|
711
|
+
--turbo-syntax-comment: #59636e;
|
|
712
|
+
--turbo-syntax-keyword: #0969da;
|
|
713
|
+
--turbo-syntax-string: #1a7f37;
|
|
714
|
+
--turbo-syntax-number: #9a6700;
|
|
715
|
+
--turbo-syntax-function: #0969da;
|
|
716
|
+
--turbo-syntax-type: #0969da;
|
|
717
|
+
--turbo-syntax-variable: #1f2328;
|
|
718
|
+
--turbo-syntax-operator: #59636e;
|
|
719
|
+
--turbo-syntax-punctuation: #59636e;
|
|
720
|
+
--turbo-syntax-tag: #d1242f;
|
|
721
|
+
--turbo-syntax-attribute: #0969da;
|
|
722
|
+
--turbo-syntax-value: #1a7f37;
|
|
723
|
+
--turbo-syntax-error: #d1242f;
|
|
724
|
+
--turbo-syntax-deleted: #d1242f;
|
|
725
|
+
--turbo-syntax-inserted: #1a7f37;
|
|
726
|
+
color-scheme: light;
|
|
727
|
+
}
|