-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
52 lines (44 loc) · 1019 Bytes
/
styles.js
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
import { createGlobalStyle } from "styled-components";
export default createGlobalStyle`
@font-face {
font-family: 'PlayfairDisplay-Bold';
src: url('/PlayfairDisplay-Bold.ttf') format('truetype');
font-weight: Bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'PlayfairDisplay';
src: url('/PlayfairDisplay-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'CormorantGaramond';
src: url('/CormorantGaramond-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
:root {
--background-white: #efeeec;
--grey01: #687277;
--grey02: #3C4A51;
--grey03: #C2C5C5;
--black01: #10212A;
--blueContact-us: #25363d;
--separation-line: #959c9e;
--yellow01: #fc0;
}
body {
margin: 0;
font-family: system-ui;
background-color: var(--background-white);
}
`;