Co-authored-by: Liyas Thomas <liyascthomas@gmail.com> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
42 lines
1.8 KiB
SCSS
42 lines
1.8 KiB
SCSS
@mixin light-editor-theme {
|
|
--editor-type-color: theme("colors.violet.600");
|
|
--editor-name-color: theme("colors.red.600");
|
|
--editor-operator-color: theme("colors.indigo.600");
|
|
--editor-invalid-color: theme("colors.red.600");
|
|
--editor-separator-color: theme("colors.gray.600");
|
|
--editor-meta-color: theme("colors.gray.600");
|
|
--editor-variable-color: theme("colors.emerald.600");
|
|
--editor-link-color: theme("colors.cyan.600");
|
|
--editor-process-color: theme("colors.blue.600");
|
|
--editor-constant-color: theme("colors.fuchsia.600");
|
|
--editor-keyword-color: theme("colors.pink.600");
|
|
}
|
|
|
|
@mixin dark-editor-theme {
|
|
--editor-type-color: theme("colors.violet.400");
|
|
--editor-name-color: theme("colors.blue.400");
|
|
--editor-operator-color: theme("colors.indigo.400");
|
|
--editor-invalid-color: theme("colors.red.400");
|
|
--editor-separator-color: theme("colors.gray.400");
|
|
--editor-meta-color: theme("colors.gray.400");
|
|
--editor-variable-color: theme("colors.emerald.400");
|
|
--editor-link-color: theme("colors.cyan.400");
|
|
--editor-process-color: theme("colors.fuchsia.400");
|
|
--editor-constant-color: theme("colors.violet.400");
|
|
--editor-keyword-color: theme("colors.pink.400");
|
|
}
|
|
|
|
@mixin black-editor-theme {
|
|
--editor-type-color: theme("colors.violet.400");
|
|
--editor-name-color: theme("colors.fuchsia.400");
|
|
--editor-operator-color: theme("colors.indigo.400");
|
|
--editor-invalid-color: theme("colors.red.400");
|
|
--editor-separator-color: theme("colors.gray.400");
|
|
--editor-meta-color: theme("colors.gray.400");
|
|
--editor-variable-color: theme("colors.emerald.400");
|
|
--editor-link-color: theme("colors.cyan.400");
|
|
--editor-process-color: theme("colors.violet.400");
|
|
--editor-constant-color: theme("colors.blue.400");
|
|
--editor-keyword-color: theme("colors.pink.400");
|
|
}
|