Skip to content

Commit cf95a66

Browse files
committed
import colors from figma
1 parent e9e7b97 commit cf95a66

File tree

13 files changed

+412
-365
lines changed

13 files changed

+412
-365
lines changed

assets/css/global.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
-webkit-font-smoothing: antialiased;
1515
-moz-osx-font-smoothing: grayscale;
1616

17-
scrollbar-color: theme(colors.gray.light.400) theme(colors.black / 0.05);
17+
scrollbar-color: var(--color-grey-400) rgba(0, 0, 0, 0.05);
1818
&.dark {
19-
scrollbar-color: theme(colors.gray.dark.800) theme(colors.white / 0.1);
19+
scrollbar-color: var(--color-grey-800) rgba(255, 255, 255, 0.1);
2020
}
2121
}
2222

2323
mark {
24-
@apply text-blue-light dark:text-blue-dark bg-transparent font-bold;
24+
@apply bg-transparent font-bold text-blue-500 dark:text-blue-800;
2525
}
2626

2727
/* Hide the clear (X) button for search inputs */

assets/css/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
@apply block max-w-full truncate py-1 pl-2 hover:font-medium hover:no-underline;
5050
&[aria-current="true"],
5151
&:hover {
52-
@apply border-l-gray-light from-gray-light-100 dark:border-l-gray-dark dark:from-gray-dark-200 border-l-2 bg-gradient-to-r font-medium text-black dark:text-white;
52+
@apply border-l-2 border-x-gray-200 bg-gradient-to-r from-gray-100 font-medium text-black dark:border-l-gray-300 dark:from-gray-200 dark:text-white;
5353
}
5454
&:not([aria-current="true"]) {
55-
@apply text-gray-light-600 dark:text-gray-dark-700 hover:text-black dark:hover:text-white;
55+
@apply text-gray-600 hover:text-black dark:text-gray-700 dark:hover:text-white;
5656
}
5757
}
5858
}

0 commit comments

Comments
 (0)