-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.ts
More file actions
56 lines (39 loc) · 1022 Bytes
/
global.ts
File metadata and controls
56 lines (39 loc) · 1022 Bytes
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
46
47
48
49
50
51
52
53
54
55
56
import { createGlobalStyle } from "styled-components";
export const GlobalStyles = createGlobalStyle`
:root{
--white: #FFFFFF;
--gray-100: #E1E1E6;
--gray-300: #C4C4CC;
--gray-400: #8D8D99;
--gray-500: #7C7C8A;
--gray-600: #323238;
--gray-700: #29292E;
--gray-800: #202024;
--gray-900: #121214;
--green-300: #00B37E;
--green-500: #00875F;
--green-700: #015F43;
--red-500: #AB222E;
--red-700: #7A1921;
--yellow-500: #FBA94C;
}
:focus {
outline: 0;
box-shadow: 0 0 0 2px var(--gray-500)
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--gray-900);
color: var(--gray-300);
-webkit-font-smoothing: antialiased;
}
body, input, textarea, button {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 1rem;
}
`;