mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
66 lines
1.3 KiB
CSS
66 lines
1.3 KiB
CSS
@import url('https://rsms.me/inter/inter.css');
|
|
|
|
:root {
|
|
font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
font-family: 'Inter var', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
}
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
color-scheme: light;
|
|
}
|
|
|
|
#__next {
|
|
height: 100%;
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
display: none;
|
|
}
|
|
|
|
.dark [data-theme='dark'] {
|
|
display: block;
|
|
}
|
|
|
|
.dark [data-theme='light'] {
|
|
display: none;
|
|
}
|
|
|
|
pre[data-theme='light'] {
|
|
background: #ffffff;
|
|
border: 1px solid #dddddd;
|
|
}
|
|
|
|
pre[data-theme='dark'] {
|
|
background: #1e1e1e;
|
|
}
|
|
|
|
pre {
|
|
font-size: 13px !important;
|
|
white-space: pre;
|
|
word-spacing: normal;
|
|
word-break: normal;
|
|
line-height: 1.5;
|
|
tab-size: 4;
|
|
hyphens: none;
|
|
padding: 1em;
|
|
margin: 0.5em 0;
|
|
overflow: auto;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
code {
|
|
font-family: 'JetBrains Mono', monospace !important;
|
|
}
|