mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-19 19:19:03 +00:00
add theming code variables for constant and regex
This commit is contained in:
parent
243419aece
commit
97080e4c72
@ -1036,6 +1036,9 @@
|
|||||||
.notion-code-block .token.keyword {
|
.notion-code-block .token.keyword {
|
||||||
color: var(--theme--code_keyword) !important;
|
color: var(--theme--code_keyword) !important;
|
||||||
}
|
}
|
||||||
|
.notion-code-block .token.constant {
|
||||||
|
color: var(--theme--code_constant) !important;
|
||||||
|
}
|
||||||
.notion-code-block .token.tag {
|
.notion-code-block .token.tag {
|
||||||
color: var(--theme--code_tag) !important;
|
color: var(--theme--code_tag) !important;
|
||||||
}
|
}
|
||||||
@ -1045,6 +1048,9 @@
|
|||||||
.notion-code-block .token.important {
|
.notion-code-block .token.important {
|
||||||
color: var(--theme--code_important) !important;
|
color: var(--theme--code_important) !important;
|
||||||
}
|
}
|
||||||
|
.notion-code-block .token.regex {
|
||||||
|
color: var(--theme--code_regex) !important;
|
||||||
|
}
|
||||||
.notion-code-block .token.property {
|
.notion-code-block .token.property {
|
||||||
color: var(--theme--code_property) !important;
|
color: var(--theme--code_property) !important;
|
||||||
}
|
}
|
||||||
|
@ -188,9 +188,11 @@
|
|||||||
--theme_dark--code_function: var(--theme_dark--code-text);
|
--theme_dark--code_function: var(--theme_dark--code-text);
|
||||||
--theme_dark--code_parameter: var(--theme_dark--code-text);
|
--theme_dark--code_parameter: var(--theme_dark--code-text);
|
||||||
--theme_dark--code_keyword: hsl(350, 40%, 70%);
|
--theme_dark--code_keyword: hsl(350, 40%, 70%);
|
||||||
|
--theme_dark--code_constant: hsl(350, 40%, 70%);
|
||||||
--theme_dark--code_tag: hsl(350, 40%, 70%);
|
--theme_dark--code_tag: hsl(350, 40%, 70%);
|
||||||
--theme_dark--code_operator: hsl(40, 90%, 60%);
|
--theme_dark--code_operator: hsl(40, 90%, 60%);
|
||||||
--theme_dark--code_important: #e90;
|
--theme_dark--code_important: #e90;
|
||||||
|
--theme_dark--code_regex: #e90;
|
||||||
--theme_dark--code_property: hsl(350, 40%, 70%);
|
--theme_dark--code_property: hsl(350, 40%, 70%);
|
||||||
--theme_dark--code_builtin: hsl(75, 70%, 60%);
|
--theme_dark--code_builtin: hsl(75, 70%, 60%);
|
||||||
--theme_dark--code_class-name: var(--theme_dark--code-text);
|
--theme_dark--code_class-name: var(--theme_dark--code-text);
|
||||||
@ -394,9 +396,11 @@
|
|||||||
--theme_light--code_function: #dd4a68;
|
--theme_light--code_function: #dd4a68;
|
||||||
--theme_light--code_parameter: var(--theme_light--code-text);
|
--theme_light--code_parameter: var(--theme_light--code-text);
|
||||||
--theme_light--code_keyword: #07a;
|
--theme_light--code_keyword: #07a;
|
||||||
|
--theme_light--code_constant: #905;
|
||||||
--theme_light--code_tag: #905;
|
--theme_light--code_tag: #905;
|
||||||
--theme_light--code_operator: #9a6e3a;
|
--theme_light--code_operator: #9a6e3a;
|
||||||
--theme_light--code_important: #e90;
|
--theme_light--code_important: #e90;
|
||||||
|
--theme_light--code_regex: #e90;
|
||||||
--theme_light--code_property: #905;
|
--theme_light--code_property: #905;
|
||||||
--theme_light--code_builtin: #690;
|
--theme_light--code_builtin: #690;
|
||||||
--theme_light--code_class-name: #dd4a68;
|
--theme_light--code_class-name: #dd4a68;
|
||||||
@ -580,9 +584,11 @@
|
|||||||
--theme--code_function: var(--theme_dark--code_function);
|
--theme--code_function: var(--theme_dark--code_function);
|
||||||
--theme--code_parameter: var(--theme_dark--code_parameter);
|
--theme--code_parameter: var(--theme_dark--code_parameter);
|
||||||
--theme--code_keyword: var(--theme_dark--code_keyword);
|
--theme--code_keyword: var(--theme_dark--code_keyword);
|
||||||
|
--theme--code_constant: var(--theme_dark--code_constant);
|
||||||
--theme--code_tag: var(--theme_dark--code_tag);
|
--theme--code_tag: var(--theme_dark--code_tag);
|
||||||
--theme--code_operator: var(--theme_dark--code_operator);
|
--theme--code_operator: var(--theme_dark--code_operator);
|
||||||
--theme--code_important: var(--theme_dark--code_important);
|
--theme--code_important: var(--theme_dark--code_important);
|
||||||
|
--theme--code_regex: var(--theme_dark--code_regex);
|
||||||
--theme--code_property: var(--theme_dark--code_property);
|
--theme--code_property: var(--theme_dark--code_property);
|
||||||
--theme--code_builtin: var(--theme_dark--code_builtin);
|
--theme--code_builtin: var(--theme_dark--code_builtin);
|
||||||
--theme--code_class-name: var(--theme_dark--code_class-name);
|
--theme--code_class-name: var(--theme_dark--code_class-name);
|
||||||
@ -766,9 +772,11 @@
|
|||||||
--theme--code_function: var(--theme_light--code_function);
|
--theme--code_function: var(--theme_light--code_function);
|
||||||
--theme--code_parameter: var(--theme_light--code_parameter);
|
--theme--code_parameter: var(--theme_light--code_parameter);
|
||||||
--theme--code_keyword: var(--theme_light--code_keyword);
|
--theme--code_keyword: var(--theme_light--code_keyword);
|
||||||
|
--theme--code_constant: var(--theme_light--code_constant);
|
||||||
--theme--code_tag: var(--theme_light--code_tag);
|
--theme--code_tag: var(--theme_light--code_tag);
|
||||||
--theme--code_operator: var(--theme_light--code_operator);
|
--theme--code_operator: var(--theme_light--code_operator);
|
||||||
--theme--code_important: var(--theme_light--code_important);
|
--theme--code_important: var(--theme_light--code_important);
|
||||||
|
--theme--code_regex: var(--theme_light--code_regex);
|
||||||
--theme--code_property: var(--theme_light--code_property);
|
--theme--code_property: var(--theme_light--code_property);
|
||||||
--theme--code_builtin: var(--theme_light--code_builtin);
|
--theme--code_builtin: var(--theme_light--code_builtin);
|
||||||
--theme--code_class-name: var(--theme_light--code_class-name);
|
--theme--code_class-name: var(--theme_light--code_class-name);
|
||||||
|
Loading…
Reference in New Issue
Block a user