refactor: types

This commit is contained in:
liyasthomas
2021-07-24 16:28:32 +05:30
parent 4de55c39dd
commit 4c2a9c1229
30 changed files with 136 additions and 129 deletions

View File

@@ -104,7 +104,7 @@ a {
.tippy-popper {
.tooltip-theme {
@apply bg-tooltip;
@apply text-primaryLight text-xs;
@apply text-primary text-xs;
@apply font-semibold;
@apply py-1 px-2;
@apply shadow;
@@ -291,7 +291,7 @@ input[type="checkbox"] {
&.toasted-primary {
@apply px-6 py-1;
@apply bg-tooltip;
@apply text-white text-xs;
@apply text-primary text-xs;
@apply !font-semibold;
.material-icons {

View File

@@ -39,11 +39,11 @@
// Dark Background color
--primary-dark-color: theme("colors.true-gray.100");
// Text color
--secondary-color: theme("colors.true-gray.500");
--secondary-color: theme("colors.true-gray.600");
// Light Text color
--secondary-light-color: theme("colors.true-gray.400");
// Dark Text color
--secondary-dark-color: theme("colors.true-gray.600");
--secondary-dark-color: theme("colors.true-gray.800");
// Border color
--divider-color: theme("colors.true-gray.200");
// Light Border color
@@ -53,7 +53,7 @@
// Error color
--error-color: theme("colors.true-gray.700");
// Tooltip color
--tooltip-color: theme("colors.true-gray.700");
--tooltip-color: theme("colors.true-gray.800");
// Editor theme
--editor-theme: "textmate";
}
@@ -80,7 +80,7 @@
// Error color
--error-color: theme("colors.dark.800");
// Tooltip color
--tooltip-color: theme("colors.true-gray.300");
--tooltip-color: theme("colors.true-gray.200");
// Editor theme
--editor-theme: "vibrant_ink";
}