File size: 1,730 Bytes
755dd12 |
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
color-scheme: light dark;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
--td-brand-color: #000000;
--td-brand-color-active: #111111;
--td-brand-color-hover: #666666;
--td-brand-color-focus: #333333;
--main-bg-color: #ffffff;
--main-font-color: #333333;
}
:root[theme-mode="light"] {
--td-brand-color: #000000;
--td-brand-color-active: #111111;
--td-brand-color-hover: #666666;
--td-brand-color-focus: #f5f5f5;
--main-bg-color: #ffffff;
--main-font-color: #333333;
}
:root[theme-mode="dark"] {
--td-brand-color: #000000;
--td-brand-color-active: #111111;
--td-brand-color-hover: #666666;
--td-brand-color-focus: #333333;
--main-bg-color: #000000;
--main-font-color: #cccccc;
}
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: var(--main-bg-color);
scrollbar-color: #8e9099 transparent;
overflow-x: hidden;
overflow-y: auto;
}
html[theme-mode="dark"] {
scrollbar-color: #8e9099 transparent;
}
html .markdown-body {
color: var(--main-font-color);
background-color: transparent;
line-height: 26px;
}
html .markdown-body pre {
color: #666666;
background-color: #f5f5f5;
}
html[theme-mode="dark"] .markdown-body {
color: var(--main-font-color);
background-color: transparent;
}
html[theme-mode="dark"] .markdown-body pre {
color: #999999;
background-color: #222222;
}
a {
text-decoration: none;
}
#app {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
}
|