forked from EddieHubCommunity/good-first-issue-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
45 lines (43 loc) · 1.1 KB
/
app.css
File metadata and controls
45 lines (43 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Write your global styles here, in PostCSS syntax */
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--neutral-050: #141414;
--neutral-100: #22272e;
--neutral-200: #333a43;
--neutral-300: #555b66;
--neutral-400: #6e7379;
--neutral-500: #888f93;
--neutral-600: #a1a7ab;
--neutral-700: #babfbf;
--neutral-800: #d3d9dc;
--neutral-900: #f5f4f4;
--primary-100: #ff5a00;
--primary-200: #ff9d00;
--primary-300: #ffbf00;
--primary-400: #e3ff00;
--accent-1: #22d3ee;
--accent-2: #eb00eb;
--color-primary: var(--primary-100);
--color-background: var(--neutral-900);
--color-off-background: #ffffff;
--color-text: var(--neutral-100);
}
.dark {
--color-primary: var(--primary-100);
--color-background: var(--neutral-100);
--color-off-background: var(--neutral-200);
--color-text: #dadada99;
--color-text-highlight: #dadadade;
}
body {
@apply bg-skin-background text-skin-text;
}
}
@layer utilities {
.default-transition {
@apply transition-all delay-[50ms] duration-200;
}
}