31 lines
973 B
CSS
31 lines
973 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
|
|
@import "tailwindcss";
|
|
|
|
:root {
|
|
--Color-Neutral-90: #151515;
|
|
--Color-Neutral-80: #303030;
|
|
--Color-Neutral-70: #606060;
|
|
--Color-Neutral-60: #808080;
|
|
--Color-Neutral-40: #DADBDE;
|
|
--Color-Neutral-30: #EAEBEF;
|
|
--Color-Neutral-20: #F0F1F4;
|
|
--Color-Neutral-10: #F7F8FA;
|
|
--Color-Neutral-00: #FFF;
|
|
--Color-Negative: #E71C3B;
|
|
--Color-Negative-Hover: #C21630;
|
|
--Color-B: #4880EF;
|
|
--Color-B-Hover: #3568C5;
|
|
|
|
--font-family-primary: 'Pretendard', system-ui, sans-serif;
|
|
--font-family-display: 'Playfair Display', serif;
|
|
--font-family-inter: 'Inter', sans-serif;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: var(--font-family-inter);
|
|
font-style: normal;
|
|
line-height: normal;
|
|
min-height: 100dvh;
|
|
} |