aboutsummaryrefslogtreecommitdiff
path: root/apps/browser-extension/entrypoints/popup/style.css
blob: 84427e60c688fb21f41b0d4055f911a65efddfb7 (plain) (blame)
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
:root {
	font-family:
		"Space Grotesk", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	font-weight: 400;

	color-scheme: light dark;
	color: rgba(255, 255, 255, 0.87);
	background-color: #242424;
	border: 1px solid #242424;

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

@media (prefers-color-scheme: light) {
	:root {
		color: #213547;
	}
	a:hover {
		color: #747bff;
	}
}