feat: more syntax hightlight colors

This commit is contained in:
liyasthomas
2021-11-10 13:53:10 +05:30
parent a9bca8e1f8
commit a967100be8
2 changed files with 39 additions and 23 deletions

View File

@@ -53,45 +53,45 @@
}
@mixin dark-editor-theme {
--editor-type-color: theme("colors.gray.800");
--editor-type-color: theme("colors.purple.800");
--editor-name-color: theme("colors.blue.500");
--editor-operator-color: theme("colors.gray.600");
--editor-operator-color: theme("colors.indigo.600");
--editor-invalid-color: theme("colors.red.500");
--editor-separator-color: theme("colors.gray.500");
--editor-meta-color: theme("colors.gray.500");
--editor-variable-color: theme("colors.gray.500");
--editor-link-color: theme("colors.blue.500");
--editor-variable-color: theme("colors.green.500");
--editor-link-color: theme("colors.cyan.500");
--editor-process-color: theme("colors.gray.400");
--editor-constant-color: theme("colors.blue.500");
--editor-keyword-color: theme("colors.blue.500");
--editor-constant-color: theme("colors.indigo.500");
--editor-keyword-color: theme("colors.pink.500");
}
@mixin light-editor-theme {
--editor-type-color: theme("colors.gray.800");
--editor-type-color: theme("colors.purple.800");
--editor-name-color: theme("colors.red.600");
--editor-operator-color: theme("colors.gray.600");
--editor-operator-color: theme("colors.indigo.600");
--editor-invalid-color: theme("colors.red.500");
--editor-separator-color: theme("colors.gray.500");
--editor-meta-color: theme("colors.gray.500");
--editor-variable-color: theme("colors.gray.500");
--editor-link-color: theme("colors.blue.500");
--editor-variable-color: theme("colors.green.500");
--editor-link-color: theme("colors.cyan.500");
--editor-process-color: theme("colors.blue.600");
--editor-constant-color: theme("colors.blue.500");
--editor-keyword-color: theme("colors.blue.500");
--editor-constant-color: theme("colors.indigo.500");
--editor-keyword-color: theme("colors.pink.500");
}
@mixin black-editor-theme {
--editor-type-color: theme("colors.gray.800");
--editor-type-color: theme("colors.purple.800");
--editor-name-color: theme("colors.gray.400");
--editor-operator-color: theme("colors.gray.600");
--editor-operator-color: theme("colors.indigo.600");
--editor-invalid-color: theme("colors.red.500");
--editor-separator-color: theme("colors.gray.500");
--editor-meta-color: theme("colors.gray.500");
--editor-variable-color: theme("colors.gray.500");
--editor-link-color: theme("colors.blue.500");
--editor-variable-color: theme("colors.green.500");
--editor-link-color: theme("colors.cyan.500");
--editor-process-color: theme("colors.blue.500");
--editor-constant-color: theme("colors.blue.500");
--editor-keyword-color: theme("colors.blue.500");
--editor-constant-color: theme("colors.indigo.500");
--editor-keyword-color: theme("colors.pink.500");
}
@mixin green-theme {