@charset "UTF-8";
body {
  --page-fg-color: #00000099;
  --page-bg-color: #fff;
  --text-color-darker: #464646;
  --text-color-normal: #5f5f5f;
  --text-color-lighter-1: #999999;
  --text-color-lighter-2: #bbbbbb;
  --text-color-error: #e53935;
  --bg-color-darker-2: #DDDDDDAA;
  --bg-color-darker-1: #EEEEEEAA;
  --bg-color-darker-1-solid: #f4f4f4;
  --bg-color-normal: #FFFFFFAA;
  --bg-color-lighter: #f6f6f6;
  --bg-color-contrast: var(--page-bg-color);
  --border-color-darker-3: #5a5a5a;
  --border-color-darker-2: #666666;
  --border-color-darker-1: #d6d6d6;
  --border-color-normal: #f7f7f9;
  --border-color-lighter: #f2f2f2;
  --link-color: #5a5a5a;
  --link-hover-color: #4786d6;
  --navigation-bg-color: white;
  --navigation-hover-color: var(--link-hover-color);
  --sidebar-author-color: #424242;
  --sidebar-desc-color: #565654;
  --sidebar-hover-color: var(--link-hover-color);
  --sidebar-logo-shadow-color: rgba(0, 0, 0, 0.3);
  --pagination-bg-color: #f5f5f5;
  --pagination-hover-color: #4786d6;
  --pagination-bg-hover-color: #F7FAFC;
  --markdown-pre-bg-color: #f0f0f0;
  --markdown-pre-lang-color: #aaaaaa;
  --markdown-table-bg-color: #f9f9f9;
  --markdown-link-card-bg-color: #EEEEEE54;
  --markdown-link-card-bg-color-hover: #EEEEEEAA;
  --gitalk-bg-hover-color: var(--bg-color-lighter);
}

body.night-mode {
  --page-fg-color: #FFFFFFbb;
  --page-bg-color: #212121;
  --text-color-darker: #b9b9b9;
  --text-color-normal: #a0a0a0;
  --text-color-lighter-1: #888888;
  --text-color-lighter-2: #707070;
  --text-color-error: #ff4336;
  --bg-color-darker-2: #6f6f6faa;
  --bg-color-darker-1: #111111AA;
  --bg-color-darker-1-solid: #1b1b1b;
  --bg-color-normal: #212121AA;
  --bg-color-lighter: #333333AA;
  --border-color-darker-3: #a5a5a5;
  --border-color-darker-2: #999999;
  --border-color-darker-1: #5e5e5e;
  --border-color-normal: #414141;
  --border-color-lighter: #444444;
  --link-color: #a5a5a5;
  --link-markdown-color: #3b90ff;
  --link-hover-color: #5ca3ff;
  --navigation-bg-color: #212121;
  --navigation-hover-color: white;
  --sidebar-author-color: #bdbdbd;
  --sidebar-desc-color: #a9a9ab;
  --sidebar-hover-color: white;
  --sidebar-logo-shadow-color: rgba(255, 255, 255, 0.3);
  --pagination-bg-color: #0a0a0a;
  --pagination-hover-color: #fff;
  --pagination-bg-hover-color: #4786d6;
  --markdown-pre-bg-color: #2f2f2f;
  --markdown-pre-lang-color: #999;
  --markdown-table-bg-color: #ffffff11;
  --markdown-link-card-bg-color: #61616154;
  --markdown-link-card-bg-color-hover: #616161AA;
  --gitalk-bg-hover-color: #333333;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  filter: brightness(0.75);
}

body.night-mode #particles {
  filter: brightness(1.25);
}

body {
  font-family: "LXGW WenKai Screen", "PingHei", "PingFang SC", Helvetica Neue, "Work Sans", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
  font-size: 15px;
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 1.6em;
  color: var(--page-fg-color);
  background-color: var(--page-bg-color);
}

body.loaded {
  transition: color 0.5s, background-color 0.5s;
}

a {
  text-decoration: none;
}

a:link, a:visited, .clickable {
  opacity: 1;
  transition: all 0.15s linear;
}

.clickable, a {
  color: var(--link-color);
}

.clickable:hover, a:hover {
  color: var(--link-hover-color) !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--text-color-lighter-1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-color-lighter-2);
}

::-webkit-scrollbar-thumb:active {
  background: var(--text-color-normal);
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: var(--bg-color-darker-1);
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 21;
  border-right: 1px solid var(--border-color-lighter);
  text-align: center;
  backdrop-filter: blur(1.5px);
  transition: backdrop-filter 0.5s;
}
.sidebar .author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}
.sidebar .author-info h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}
.sidebar .author-info h3 a {
  color: var(--sidebar-author-color);
}
.sidebar .author-info h3 a:hover {
  color: var(--sidebar-author-color) !important;
}
.sidebar .author-info .logo {
  width: 127px;
  margin-bottom: 1em;
  filter: drop-shadow(0px 0px 7px var(--sidebar-logo-shadow-color));
  border-radius: 50%;
}
.sidebar .author-info .description {
  font-size: 14px;
  color: var(--sidebar-desc-color);
  line-height: 1em;
}
.sidebar .author-info .social-links {
  list-style: none;
  padding: 0;
  font-size: 17px;
  text-align: center;
  margin: 0.75em 0;
}
.sidebar .author-info .social-links li {
  display: inline;
  padding: 0 6px;
  line-height: 0;
}
.sidebar .author-info .social-links li a:hover {
  color: var(--sidebar-hover-color) !important;
}
.sidebar .toc-container {
  height: 30%;
}

.sidebar:hover {
  backdrop-filter: blur(1px);
}

.navigation {
  width: 70%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  background-color: var(--navigation-bg-color);
  height: 60px;
  border-bottom: 1px solid var(--border-color-lighter);
}
.navigation .navigation-container {
  height: 100%;
  padding: 0 1em 0 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation .navigation-container .navigation-menu {
  list-style: none;
  float: left;
  font-size: 15px;
}
.navigation .navigation-container .navigation-menu li {
  position: relative;
  display: initial;
  padding-right: 20px;
  text-wrap: nowrap;
}
.navigation .navigation-container .navigation-menu li a:hover {
  color: var(--navigation-hover-color) !important;
}
.navigation .navigation-container .navigation-menu a.current {
  font-weight: bold;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--border-color-darker-3);
}
.navigation .navigation-container .navigation-utility {
  display: flex;
}
.navigation .navigation-container .navigation-utility .nav-button {
  padding: 0.35em 0.35em 0.35em 0.5em;
  width: 1.5em;
  text-align: center;
  font-size: large;
}
.navigation .navigation-container .navigation-utility .nav-button:hover {
  color: var(--navigation-hover-color) !important;
}
.navigation .navigation-container .navigation-utility #nav-light > * {
  display: none;
}
.navigation .navigation-container .navigation-utility #nav-light.light-mode-auto .light-mode-night {
  display: inline-block !important;
}
.navigation .navigation-container .navigation-utility #nav-light.light-mode-day .light-mode-auto {
  display: inline-block !important;
}
.navigation .navigation-container .navigation-utility #nav-light.light-mode-night .light-mode-day {
  display: inline-block !important;
}

.footer {
  clear: both;
  text-align: center;
  font-size: 12.5px;
  margin: 0 auto;
  bottom: 0;
  position: fixed;
  width: 30%;
  padding-bottom: 20px;
  z-index: 22;
}
.footer a:hover {
  color: var(--sidebar-hover-color) !important;
}
.footer .moe-icp img {
  height: 17px;
  position: relative;
  top: 4px;
}

.paginator {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
  justify-content: end;
  padding: 2em 0;
}
.paginator .page-number, .paginator .extend {
  padding: 0.15em 0.5em;
  text-align: center;
  background: var(--pagination-bg-color);
  transition: color 0.3s, background-color 0.3s;
}
.paginator .page-number:hover, .paginator .extend:hover {
  background: var(--pagination-bg-hover-color);
  color: var(--pagination-hover-color) !important;
}
.paginator .page-number.current {
  background: var(--border-color-darker-3);
  color: var(--bg-color-contrast);
}

.main {
  height: auto;
  margin-left: 30%;
  margin-top: 60px;
  background-color: var(--bg-color-normal);
  padding: 1em 2em 2em 2em;
}

.post-container {
  position: relative;
}

.post-title {
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 600;
  color: #464646;
  font-size: 22px;
  margin: 0;
}
.post-title a:hover {
  color: var(--text-color-darker);
  text-decoration: underline;
}
.post-title h3 {
  margin: 0.5em 0 0.25em 0;
}

.post-meta {
  max-width: 100%;
  color: var(--text-color-lighter-2);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  margin-top: 1.5em;
}
.post-meta .meta-entry a {
  text-decoration: none;
  color: var(--text-color-lighter-2);
  padding-right: 0.25em;
}
.post-meta .meta-entry a:hover {
  color: var(--link-hover-color);
}

.post-info {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--border-color-lighter);
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
.pagination .page-button {
  display: flex;
  align-items: center;
  padding: 0.25em;
  line-height: 1.666em;
  position: relative;
  color: var(--text-color-lighter-1);
  background: var(--bg-color-contrast);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.pagination .page-button .button-icon {
  font-size: 15px;
}
.pagination .page-button .button-icon-prev {
  margin-right: 0.2em;
}
.pagination .page-button .button-icon-next {
  margin-left: 0.2em;
}

.post-list > .post-item {
  padding: 1.5em 0 1em 0;
  border-bottom: 1px solid var(--border-color-lighter);
}
.post-list > .post-item .post-summary {
  word-wrap: break-word;
  word-break: break-all;
}
.post-list > .post-item .post-summary p {
  margin: 0.6em 0 0.25em 0;
}
.post-list > .post-item .post-meta {
  margin-top: 0;
}

.post-list .list-title {
  font-size: 24px;
  color: var(--text-color-darker);
  font-weight: 600;
  line-height: 2.2em;
}
.post-list .list-item {
  display: flex;
  padding-bottom: 5px;
  justify-content: space-between;
}
.post-list .list-item a {
  color: var(--text-color-normal);
}
.post-list .list-item a:hover {
  color: var(--link-hover-color);
}
.post-list .list-item .post-time {
  color: var(--text-color-lighter-2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideTopIn {
  from {
    opacity: 0;
    transform: translateY(-2em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeftIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.navigation-menu {
  animation: slideTopIn 1s;
}

.sidebar {
  animation: slideLeftIn 1s;
}

.footer {
  animation: slideLeftIn 1s;
}

.post-list > * {
  animation: slideTopIn 0.5s;
  opacity: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.post-list > *:nth-child(1) {
  animation-delay: calc(0.2s * 1);
}

.post-list > *:nth-child(2) {
  animation-delay: calc(0.2s * 2);
}

.post-list > *:nth-child(3) {
  animation-delay: calc(0.2s * 3);
}

.post-list > *:nth-child(4) {
  animation-delay: calc(0.2s * 4);
}

.post-list > *:nth-child(5) {
  animation-delay: calc(0.2s * 5);
}

.post-list > *:nth-child(6) {
  animation-delay: calc(0.2s * 6);
}

.post-list > *:nth-child(7) {
  animation-delay: calc(0.2s * 7);
}

.post-list > *:nth-child(8) {
  animation-delay: calc(0.2s * 8);
}

.post-list > *:nth-child(9) {
  animation-delay: calc(0.2s * 9);
}

.post-list > *:nth-child(10) {
  animation-delay: calc(0.2s * 10);
}

.post-list > *:nth-child(11) {
  animation-delay: calc(0.2s * 11);
}

.post-list > *:nth-child(12) {
  animation-delay: calc(0.2s * 12);
}

.post-list > *:nth-child(13) {
  animation-delay: calc(0.2s * 13);
}

.post-list > *:nth-child(14) {
  animation-delay: calc(0.2s * 14);
}

.post-list > *:nth-child(15) {
  animation-delay: calc(0.2s * 15);
}

.post-list > *:nth-child(16) {
  animation-delay: calc(0.2s * 16);
}

.post-list > *:nth-child(17) {
  animation-delay: calc(0.2s * 17);
}

.post-list > *:nth-child(18) {
  animation-delay: calc(0.2s * 18);
}

.post-list > *:nth-child(19) {
  animation-delay: calc(0.2s * 19);
}

.post-list > *:nth-child(20) {
  animation-delay: calc(0.2s * 20);
}

.post-list > *:nth-child(21) {
  animation-delay: calc(0.2s * 21);
}

.post-list > *:nth-child(22) {
  animation-delay: calc(0.2s * 22);
}

.post-list > *:nth-child(23) {
  animation-delay: calc(0.2s * 23);
}

.post-list > *:nth-child(24) {
  animation-delay: calc(0.2s * 24);
}

.post-list > *:nth-child(25) {
  animation-delay: calc(0.2s * 25);
}

.post-list > *:nth-child(26) {
  animation-delay: calc(0.2s * 26);
}

.post-list > *:nth-child(27) {
  animation-delay: calc(0.2s * 27);
}

.post-list > *:nth-child(28) {
  animation-delay: calc(0.2s * 28);
}

.post-list > *:nth-child(29) {
  animation-delay: calc(0.2s * 29);
}

.post-list > *:nth-child(30) {
  animation-delay: calc(0.2s * 30);
}

.post-list > *:nth-child(31) {
  animation-delay: calc(0.2s * 31);
}

.post-list > *:nth-child(32) {
  animation-delay: calc(0.2s * 32);
}

.post-list > *:nth-child(33) {
  animation-delay: calc(0.2s * 33);
}

.post-list > *:nth-child(34) {
  animation-delay: calc(0.2s * 34);
}

.post-list > *:nth-child(35) {
  animation-delay: calc(0.2s * 35);
}

.post-list > *:nth-child(36) {
  animation-delay: calc(0.2s * 36);
}

.post-list > *:nth-child(37) {
  animation-delay: calc(0.2s * 37);
}

.post-list > *:nth-child(38) {
  animation-delay: calc(0.2s * 38);
}

.post-list > *:nth-child(39) {
  animation-delay: calc(0.2s * 39);
}

.post-list > *:nth-child(40) {
  animation-delay: calc(0.2s * 40);
}

.post-list > *:nth-child(41) {
  animation-delay: calc(0.2s * 41);
}

.post-list > *:nth-child(42) {
  animation-delay: calc(0.2s * 42);
}

.post-list > *:nth-child(43) {
  animation-delay: calc(0.2s * 43);
}

.post-list > *:nth-child(44) {
  animation-delay: calc(0.2s * 44);
}

.post-list > *:nth-child(45) {
  animation-delay: calc(0.2s * 45);
}

.post-list > *:nth-child(46) {
  animation-delay: calc(0.2s * 46);
}

.post-list > *:nth-child(47) {
  animation-delay: calc(0.2s * 47);
}

.post-list > *:nth-child(48) {
  animation-delay: calc(0.2s * 48);
}

.post-list > *:nth-child(49) {
  animation-delay: calc(0.2s * 49);
}

.post-list > *:nth-child(50) {
  animation-delay: calc(0.2s * 50);
}

.post {
  animation: slideTopIn 1s;
}

@media screen and (max-width: 960px) {
  body {
    font-size: 0.85rem;
  }
  .sidebar {
    width: 100%;
    position: unset;
    border-right: none;
    z-index: 1;
    height: unset;
    padding-top: 6em;
    padding-bottom: 0.5em;
  }
  .sidebar .author-info h3 {
    font-size: 1.7rem;
  }
  .sidebar .author-info img {
    width: 100px !important;
  }
  .navigation {
    width: 100%;
    height: 45px;
  }
  .navigation .navigation-container .navigation-menu {
    padding: 0 1.5em;
    font-size: 0.85rem;
  }
  .navigation .navigation-container .navigation-menu li {
    padding-right: 16px;
  }
  .navigation .navigation-container .navigation-menu a.current {
    padding-bottom: 12px;
  }
  .main {
    margin: 0;
    padding: 1em 1.5em;
  }
  .footer {
    position: unset;
    width: 100%;
  }
  .post-list .list-title {
    font-size: 1.4rem;
    line-height: 2em;
  }
  .post-list > .post-item .post-title {
    font-size: 1rem;
  }
  .post-title {
    font-size: 1rem;
  }
  .post-meta {
    font-size: 0.7rem;
  }
  .post-content .link-container .card {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .gt-container .gt-meta {
    font-size: 0.8rem;
  }
  .gt-container .gt-header-textarea {
    font-size: 0.75rem;
  }
  .gt-container .gt-comment .gt-comment-avatar {
    position: absolute;
    width: 2.8em;
    height: 2.8em;
  }
  .gt-container .gt-comment .gt-comment-avatar img {
    border-radius: 0 !important;
    filter: none;
    border: 1px solid var(--border-color-darker-1);
  }
  .gt-container .gt-comment .gt-comment-content {
    margin-left: 0;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header {
    line-height: 1rem;
    padding-left: 3.7em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-username {
    display: block;
    width: 100%;
    line-height: 0.8rem;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-text {
    margin-left: 0;
    font-size: 0.75em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-date {
    font-size: 0.75em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-like {
    top: 0.95em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-reply {
    top: 0.95em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-body {
    padding: 0.75em 1em 0.75em 1em;
    font-size: 0.85rem;
  }
  .gt-container .markdown-body h1,
  .gt-container .markdown-body h2,
  .gt-container .markdown-body h3,
  .gt-container .markdown-body h4,
  .gt-container .markdown-body h5,
  .gt-container .markdown-body h6 {
    margin: 1rem 0 0.75rem 0 !important;
  }
  .gt-container .markdown-body h1 {
    font-size: 1.6rem !important;
    line-height: 1.2em !important;
  }
  .gt-container .markdown-body h2 {
    font-size: 1.5rem !important;
    line-height: 1.2em !important;
  }
  .gt-container .markdown-body h3 {
    font-size: 1.4rem !important;
  }
  .gt-container .markdown-body h4 {
    font-size: 1.3rem !important;
  }
  .gt-container .markdown-body h5 {
    font-size: 1.2rem !important;
  }
  .gt-container .markdown-body h6 {
    font-size: 1.1rem !important;
  }
  .gt-container .markdown-body tr th, .gt-container .markdown-body tr td {
    font-size: 0.85rem !important;
  }
  .gt-container .markdown-body pre {
    font-size: 0.75rem !important;
  }
  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6 {
    margin: 1rem 0 0.75rem 0 !important;
  }
  .post-content h1 {
    font-size: 1.6rem !important;
    line-height: 1.2em !important;
  }
  .post-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.2em !important;
  }
  .post-content h3 {
    font-size: 1.4rem !important;
  }
  .post-content h4 {
    font-size: 1.3rem !important;
  }
  .post-content h5 {
    font-size: 1.2rem !important;
  }
  .post-content h6 {
    font-size: 1.1rem !important;
  }
  .post-content tr th, .post-content tr td {
    font-size: 0.85rem !important;
  }
  .post-content pre {
    font-size: 0.75rem !important;
  }
  .sidebar {
    animation: slideTopIn 1s;
  }
  .navigation-menu {
    animation: slideTopIn 1s;
  }
  .footer {
    animation: fadeIn 1s;
    opacity: 0;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
}
.post-content .code-wrapper {
  background: var(--markdown-pre-bg-color) !important;
  position: relative;
  margin: 0.5em 0;
}
.post-content .code-wrapper.has-language {
  padding-top: 8px;
  padding-bottom: 2px;
}
.post-content pre {
  background-color: transparent !important;
  position: relative;
  font-size: 13px;
}
.post-content pre code {
  background-color: transparent !important;
  border: none;
}
.post-content .code-wrapper.has-language:before {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  color: var(--markdown-pre-lang-color) !important;
  text-align: right !important;
  font-size: 12px !important;
  padding: 10px 10px 0 !important;
  line-height: 15px !important;
  height: 15px !important;
}
.post-content .code-wrapper.language-html:before {
  content: "HTML";
}
.post-content .code-wrapper.language-javascript:before {
  content: "JS";
}
.post-content .code-wrapper.language-bash:before {
  content: "BASH";
}
.post-content .code-wrapper.language-css:before {
  content: "CSS";
}
.post-content .code-wrapper.language-scss:before {
  content: "SCSS";
}
.post-content .code-wrapper.language-diff:before {
  content: "DIFF";
}
.post-content .code-wrapper.language-java:before {
  content: "JAVA";
}
.post-content .code-wrapper.language-xml:before {
  content: "XML";
}
.post-content .code-wrapper.language-python:before {
  content: "PYTHON";
}
.post-content .code-wrapper.language-json:before {
  content: "JSON";
}
.post-content .code-wrapper.language-swift:before {
  content: "SWIFT";
}
.post-content .code-wrapper.language-ruby:before {
  content: "RUBY";
}
.post-content .code-wrapper.language-perl:before {
  content: "PERL";
}
.post-content .code-wrapper.language-php:before {
  content: "PHP";
}
.post-content .code-wrapper.language-c:before {
  content: "C";
}
.post-content .code-wrapper.language-cpp:before {
  content: "C++";
}
.post-content .code-wrapper.language-java:before {
  content: "JAVA";
}
.post-content .code-wrapper.language-rust:before {
  content: "RUST";
}
.post-content .code-wrapper.language-markup:before {
  content: "MARKUP";
}
.post-content .code-wrapper.language-sql:before {
  content: "SQL";
}
.post-content .code-wrapper.language-objectivec:before {
  content: "OBJECTIVE-C";
}
.post-content .code-wrapper.language-makefile:before {
  content: "MAKEFILE";
}
.post-content .code-wrapper.language-go:before {
  content: "GO";
}
.post-content .code-wrapper.language-ini:before {
  content: "INI";
}
.post-content .code-wrapper.language-groovy:before {
  content: "GROOVY";
}
.post-content .code-wrapper.language-yaml:before {
  content: "YAML";
}
.post-content .code-wrapper.language-toml:before {
  content: "TOML";
}
.post-content .code-wrapper.language-markdown:before {
  content: "MARKDOWN";
}
.post-content hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--border-color-darker-1);
  margin: 2em 0;
  padding: 0;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin: 1em 0 1rem 0;
}
.post-content h1 {
  font-size: 2.1rem;
  line-height: 1.2em;
}
.post-content h2 {
  font-size: 1.9rem;
  line-height: 1.2em;
}
.post-content h3 {
  font-size: 1.75rem;
}
.post-content h4 {
  font-size: 1.3rem;
}
.post-content h5 {
  font-size: 1.2rem;
}
.post-content h6 {
  font-size: 1.1rem;
}
.post-content p, .post-content ul, .post-content ol, .post-content dl {
  margin: 0.75em 0;
}
.post-content ul, .post-content ol, .post-content dl {
  padding-inline-start: 0;
}
.post-content li {
  margin-left: 2em;
}
.post-content dd {
  margin-left: 2em;
}
.post-content ol ol,
.post-content ul ul,
.post-content ul ol,
.post-content ol ul {
  margin: 0.4em 0;
}
.post-content ul p, .post-content ol p, .post-content li p, .post-content blockquote p {
  margin: 0;
  overflow: visible;
}
.post-content a img {
  border: none;
}
.post-content pre {
  padding: 1em;
}
.post-content pre, .post-content code {
  font-family: "JetBrains Mono", "Roboto Mono", "Lucida Console", "Trebuchet MS", "Courier New", Monaco, courier, "PingFang SC", "Hiragino Sans GB", "Microsoft Jhenghei", "Microsoft YaHei", monospace !important;
}
.post-content :not(pre) or :not(.code-wrapper) code {
  padding: 1px 3px;
  font-family: Inconsolata, monospace, sans-serif;
  font-size: 0.9em;
  white-space: pre-wrap;
  border: 1px solid var(--border-color-normal);
  background: var(--bg-color-darker-1);
  color: #d14;
  border-radius: 5px;
}
.post-content a {
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--link-markdown-color);
}
.post-content li:has(input) {
  margin-left: 0;
}
.post-content li:has(input)::marker {
  content: "";
}
.post-content blockquote {
  box-sizing: border-box;
  margin: 0.3em -1px;
  border-left: #4a4a4a 0.4em solid;
  background-color: var(--bg-color-darker-1-solid);
  color: var(--text-color-darker);
  padding-right: 0.3em;
  padding-left: 0;
}
.post-content blockquote :first-child {
  padding-top: 0.3em;
}
.post-content blockquote :last-child:not(blockquote) {
  padding-bottom: 0.3em;
}
.post-content blockquote p {
  margin: 0 0 0 1em;
}
.post-content blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  color: #ccc;
}
.post-content blockquote small:before {
  content: "— ";
}
.post-content blockquote cite {
  font-weight: bold;
}
.post-content blockquote cite a {
  font-weight: normal;
}
.post-content blockquote footer {
  margin: 0 0 0 1em;
  font-size: 13px;
}
.post-content blockquote footer cite {
  margin: 0 0 0 0.25em;
}
.post-content blockquote.pullquote.right {
  text-align: right;
  border-left: 0;
  border-right: #4a4a4a 0.4em solid;
  padding-right: 1em;
}
.post-content > blockquote {
  margin: 1.6em 0;
}
.post-content table {
  box-sizing: border-box;
  margin: 1em 0;
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  border-style: solid;
  border-spacing: 0;
  background-color: transparent;
}
.post-content table, .post-content table tr, .post-content table tr td, .post-content table tr th {
  border-color: var(--border-color-lighter);
}
.post-content table th {
  color: var(--text-color-darker);
  background-color: var(--bg-color-darker-2);
}
.post-content tr th {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: left;
}
.post-content tr th, .post-content tr td {
  padding: 0.15em 0.5em;
  border-right: 1px solid;
  font-size: 1rem;
}
.post-content tr th:last-child, .post-content tr td:last-child {
  border-right: 0;
}
.post-content table th {
  font-weight: bold;
}
.post-content table tbody > tr:nth-child(odd) > td, .post-content table tbody > tr:nth-child(odd) > th {
  background-color: var(--markdown-table-bg-color);
}
.post-content img {
  max-width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}
.post-content .blur-text {
  filter: drop-shadow(0px 0px 4px black) blur(4px) brightness(1.5);
  transition: filter 0.3s;
}
.post-content .blur-text:hover {
  filter: drop-shadow(0px 0px 0 transparent) blur(0);
}
.post-content .link-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1em;
}
.post-content .link-container .card {
  display: flex;
  padding: 0.75em;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  margin-right: 0.5em;
  transition-duration: 0.15s;
  background-color: var(--markdown-link-card-bg-color);
  align-items: center;
  width: calc(50% - 2em);
}
.post-content .link-container .card .icon {
  width: 3.5em;
  height: 3.5em;
  margin-right: 0.75em;
  margin-left: 0.1em;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
  border-radius: 50%;
}
.post-content .link-container .card:nth-child(even) {
  margin-right: 0;
  width: calc(50% - 1.5em);
}
.post-content .link-container .card:last-child {
  width: 100%;
  margin-right: 0;
}
.post-content .link-container .card:hover {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
  background-color: var(--markdown-link-card-bg-color-hover);
}
.post-content .spoiler {
  margin: 5px 0;
  border: 1px solid var(--border-color-lighter);
  position: relative;
  clear: both;
}
.post-content .spoiler .spoiler-title {
  background: var(--bg-color-darker-2);
  padding: 5px 15px;
  color: var(--text-color-darker);
  font-weight: bold;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.post-content .spoiler .spoiler-title .spoiler-icon {
  display: inline-block;
  font: normal normal bold 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: rotate 0.5s ease-in-out;
  margin-right: 0.3em;
  content: "\f054" !important;
  rotate: 0;
}
.post-content .spoiler .spoiler-container {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  transition: grid-template-rows 0.5s ease-in-out;
  grid-template-rows: 0fr;
}
.post-content .spoiler .spoiler-container .spoiler-content {
  min-height: 0;
  padding: 0 15px;
}
.post-content .spoiler.expanded .spoiler-title .spoiler-icon {
  rotate: 180deg;
}
.post-content .spoiler.expanded .spoiler-container {
  overflow-x: scroll;
  grid-template-rows: 1fr;
}

.gt-container .gt-meta {
  border-bottom: 1px solid var(--border-color-normal);
}
.gt-container .gt-popup {
  background: var(--page-bg-color);
  border: 1px solid var(--border-color-normal);
}
.gt-container .gt-copyright {
  border-top: 1px solid var(--border-color-normal);
}
.gt-container .gt-link {
  border-bottom: 1px dotted var(--border-color-darker-3) !important;
}
.gt-container .gt-header-controls-tip {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-header-textarea {
  color: var(--text-color-darker);
  background-color: var(--bg-color-lighter);
  border: 1px solid var(--border-color-darker-1);
}
.gt-container .gt-header-textarea:hover {
  background-color: var(--border-color-normal);
}
.gt-container .gt-btn-preview {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-btn {
  border: 1px solid var(--border-color-darker-3) !important;
  background-color: var(--border-color-darker-3) !important;
}
.gt-container .gt-link, .gt-container .gt-action {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-comment-username {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-svg svg {
  fill: var(--border-color-darker-3) !important;
}
.gt-container .gt-btn-preview {
  background-color: var(--bg-color-contrast) !important;
}
.gt-container .gt-comment-admin .gt-comment-content {
  background-color: var(--bg-color-lighter) !important;
}
.gt-container .gt-comment-admin .gt-comment-content:hover {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background-color: var(--gitalk-bg-hover-color) !important;
}
.gt-container .gt-comment-content {
  background-color: var(--bg-color-lighter) !important;
}
.gt-container .gt-comment-content:hover {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background-color: var(--gitalk-bg-hover-color) !important;
}
.gt-container .gt-avatar img {
  border-radius: 50% !important;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.3));
}
.gt-container .gt-comment-content {
  padding: 0;
}
.gt-container .gt-comment-header {
  border-bottom: 1px solid var(--border-color-darker-1);
  padding: 0.75em 1em 0.25em 1em;
  margin-bottom: 0;
}
.gt-container .gt-comment-like {
  top: 0.75em;
  right: 2.75em;
}
.gt-container .gt-comment-edit, .gt-container .gt-comment-reply {
  top: 0.75em;
  right: 1.25em;
}
.gt-container .gt-comment-body {
  padding: 0.75em 1.25em 1em 1.25em;
  font-size: 14.5px;
  color: var(--text-color-darker) !important;
}
.gt-container .gt-error {
  color: var(--text-color-error) !important;
}
.gt-container > * {
  animation: fadeIn 1s;
}
.gt-container .markdown-body .code-wrapper {
  background: var(--markdown-pre-bg-color) !important;
  position: relative;
  margin: 0.5em 0;
}
.gt-container .markdown-body .code-wrapper.has-language {
  padding-top: 8px;
  padding-bottom: 2px;
}
.gt-container .markdown-body pre {
  background-color: transparent !important;
  position: relative;
  font-size: 13px;
}
.gt-container .markdown-body pre code {
  background-color: transparent !important;
  border: none;
}
.gt-container .markdown-body .code-wrapper.has-language:before {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  color: var(--markdown-pre-lang-color) !important;
  text-align: right !important;
  font-size: 12px !important;
  padding: 10px 10px 0 !important;
  line-height: 15px !important;
  height: 15px !important;
}
.gt-container .markdown-body .code-wrapper.language-html:before {
  content: "HTML";
}
.gt-container .markdown-body .code-wrapper.language-javascript:before {
  content: "JS";
}
.gt-container .markdown-body .code-wrapper.language-bash:before {
  content: "BASH";
}
.gt-container .markdown-body .code-wrapper.language-css:before {
  content: "CSS";
}
.gt-container .markdown-body .code-wrapper.language-scss:before {
  content: "SCSS";
}
.gt-container .markdown-body .code-wrapper.language-diff:before {
  content: "DIFF";
}
.gt-container .markdown-body .code-wrapper.language-java:before {
  content: "JAVA";
}
.gt-container .markdown-body .code-wrapper.language-xml:before {
  content: "XML";
}
.gt-container .markdown-body .code-wrapper.language-python:before {
  content: "PYTHON";
}
.gt-container .markdown-body .code-wrapper.language-json:before {
  content: "JSON";
}
.gt-container .markdown-body .code-wrapper.language-swift:before {
  content: "SWIFT";
}
.gt-container .markdown-body .code-wrapper.language-ruby:before {
  content: "RUBY";
}
.gt-container .markdown-body .code-wrapper.language-perl:before {
  content: "PERL";
}
.gt-container .markdown-body .code-wrapper.language-php:before {
  content: "PHP";
}
.gt-container .markdown-body .code-wrapper.language-c:before {
  content: "C";
}
.gt-container .markdown-body .code-wrapper.language-cpp:before {
  content: "C++";
}
.gt-container .markdown-body .code-wrapper.language-java:before {
  content: "JAVA";
}
.gt-container .markdown-body .code-wrapper.language-rust:before {
  content: "RUST";
}
.gt-container .markdown-body .code-wrapper.language-markup:before {
  content: "MARKUP";
}
.gt-container .markdown-body .code-wrapper.language-sql:before {
  content: "SQL";
}
.gt-container .markdown-body .code-wrapper.language-objectivec:before {
  content: "OBJECTIVE-C";
}
.gt-container .markdown-body .code-wrapper.language-makefile:before {
  content: "MAKEFILE";
}
.gt-container .markdown-body .code-wrapper.language-go:before {
  content: "GO";
}
.gt-container .markdown-body .code-wrapper.language-ini:before {
  content: "INI";
}
.gt-container .markdown-body .code-wrapper.language-groovy:before {
  content: "GROOVY";
}
.gt-container .markdown-body .code-wrapper.language-yaml:before {
  content: "YAML";
}
.gt-container .markdown-body .code-wrapper.language-toml:before {
  content: "TOML";
}
.gt-container .markdown-body .code-wrapper.language-markdown:before {
  content: "MARKDOWN";
}
.gt-container .markdown-body hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--border-color-darker-1);
  margin: 2em 0;
  padding: 0;
}
.gt-container .markdown-body h1,
.gt-container .markdown-body h2,
.gt-container .markdown-body h3,
.gt-container .markdown-body h4,
.gt-container .markdown-body h5,
.gt-container .markdown-body h6 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin: 1em 0 1rem 0;
}
.gt-container .markdown-body h1 {
  font-size: 2.1rem;
  line-height: 1.2em;
}
.gt-container .markdown-body h2 {
  font-size: 1.9rem;
  line-height: 1.2em;
}
.gt-container .markdown-body h3 {
  font-size: 1.75rem;
}
.gt-container .markdown-body h4 {
  font-size: 1.3rem;
}
.gt-container .markdown-body h5 {
  font-size: 1.2rem;
}
.gt-container .markdown-body h6 {
  font-size: 1.1rem;
}
.gt-container .markdown-body p, .gt-container .markdown-body ul, .gt-container .markdown-body ol, .gt-container .markdown-body dl {
  margin: 0.75em 0;
}
.gt-container .markdown-body ul, .gt-container .markdown-body ol, .gt-container .markdown-body dl {
  padding-inline-start: 0;
}
.gt-container .markdown-body li {
  margin-left: 2em;
}
.gt-container .markdown-body dd {
  margin-left: 2em;
}
.gt-container .markdown-body ol ol,
.gt-container .markdown-body ul ul,
.gt-container .markdown-body ul ol,
.gt-container .markdown-body ol ul {
  margin: 0.4em 0;
}
.gt-container .markdown-body ul p, .gt-container .markdown-body ol p, .gt-container .markdown-body li p, .gt-container .markdown-body blockquote p {
  margin: 0;
  overflow: visible;
}
.gt-container .markdown-body a img {
  border: none;
}
.gt-container .markdown-body pre {
  padding: 1em;
}
.gt-container .markdown-body pre, .gt-container .markdown-body code {
  font-family: "JetBrains Mono", "Roboto Mono", "Lucida Console", "Trebuchet MS", "Courier New", Monaco, courier, "PingFang SC", "Hiragino Sans GB", "Microsoft Jhenghei", "Microsoft YaHei", monospace !important;
}
.gt-container .markdown-body :not(pre) or :not(.code-wrapper) code {
  padding: 1px 3px;
  font-family: Inconsolata, monospace, sans-serif;
  font-size: 0.9em;
  white-space: pre-wrap;
  border: 1px solid var(--border-color-normal);
  background: var(--bg-color-darker-1);
  color: #d14;
  border-radius: 5px;
}
.gt-container .markdown-body a {
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--link-markdown-color);
}
.gt-container .markdown-body li:has(input) {
  margin-left: 0;
}
.gt-container .markdown-body li:has(input)::marker {
  content: "";
}
.gt-container .markdown-body blockquote {
  box-sizing: border-box;
  margin: 0.3em -1px;
  border-left: #4a4a4a 0.4em solid;
  background-color: var(--bg-color-darker-1-solid);
  color: var(--text-color-darker);
  padding-right: 0.3em;
  padding-left: 0;
}
.gt-container .markdown-body blockquote :first-child {
  padding-top: 0.3em;
}
.gt-container .markdown-body blockquote :last-child:not(blockquote) {
  padding-bottom: 0.3em;
}
.gt-container .markdown-body blockquote p {
  margin: 0 0 0 1em;
}
.gt-container .markdown-body blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  color: #ccc;
}
.gt-container .markdown-body blockquote small:before {
  content: "— ";
}
.gt-container .markdown-body blockquote cite {
  font-weight: bold;
}
.gt-container .markdown-body blockquote cite a {
  font-weight: normal;
}
.gt-container .markdown-body blockquote footer {
  margin: 0 0 0 1em;
  font-size: 13px;
}
.gt-container .markdown-body blockquote footer cite {
  margin: 0 0 0 0.25em;
}
.gt-container .markdown-body blockquote.pullquote.right {
  text-align: right;
  border-left: 0;
  border-right: #4a4a4a 0.4em solid;
  padding-right: 1em;
}
.gt-container .markdown-body > blockquote {
  margin: 1.6em 0;
}
.gt-container .markdown-body table {
  box-sizing: border-box;
  margin: 1em 0;
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  border-style: solid;
  border-spacing: 0;
  background-color: transparent;
}
.gt-container .markdown-body table, .gt-container .markdown-body table tr, .gt-container .markdown-body table tr td, .gt-container .markdown-body table tr th {
  border-color: var(--border-color-lighter);
}
.gt-container .markdown-body table th {
  color: var(--text-color-darker);
  background-color: var(--bg-color-darker-2);
}
.gt-container .markdown-body tr th {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: left;
}
.gt-container .markdown-body tr th, .gt-container .markdown-body tr td {
  padding: 0.15em 0.5em;
  border-right: 1px solid;
  font-size: 1rem;
}
.gt-container .markdown-body tr th:last-child, .gt-container .markdown-body tr td:last-child {
  border-right: 0;
}
.gt-container .markdown-body table th {
  font-weight: bold;
}
.gt-container .markdown-body table tbody > tr:nth-child(odd) > td, .gt-container .markdown-body table tbody > tr:nth-child(odd) > th {
  background-color: var(--markdown-table-bg-color);
}
.gt-container .markdown-body img {
  max-width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}
.gt-container .markdown-body > blockquote {
  margin: unset;
}

.bookmark {
  margin: 3em 2em;
  border-bottom: 1px solid var(--border-color-darker-1);
  border-top: 1px solid var(--border-color-darker-1);
}
.bookmark .bookmark-title {
  height: 25px;
}
.bookmark .bookmark-list {
  height: calc(100% - 25px);
  overflow: scroll;
}

.toc {
  margin: 0;
  padding: 0;
}
.toc > .toc-item {
  margin-left: 2em;
}
.toc .toc-item {
  text-align: start;
}

/**
 * One Light theme for prism.js
 * Based on Atom's One Light theme: https://github.com/atom/atom/tree/master/packages/one-light-syntax
 */
/**
 * One Light colours (accurate as of commit eb064bf on 19 Feb 2021)
 * From colors.less
 * --mono-1: hsl(230, 8%, 24%);
 * --mono-2: hsl(230, 6%, 44%);
 * --mono-3: hsl(230, 4%, 64%)
 * --hue-1: hsl(198, 99%, 37%);
 * --hue-2: hsl(221, 87%, 60%);
 * --hue-3: hsl(301, 63%, 40%);
 * --hue-4: hsl(119, 34%, 47%);
 * --hue-5: hsl(5, 74%, 59%);
 * --hue-5-2: hsl(344, 84%, 43%);
 * --hue-6: hsl(35, 99%, 36%);
 * --hue-6-2: hsl(35, 99%, 40%);
 * --syntax-fg: hsl(230, 8%, 24%);
 * --syntax-bg: hsl(230, 1%, 98%);
 * --syntax-gutter: hsl(230, 1%, 62%);
 * --syntax-guide: hsla(230, 8%, 24%, 0.2);
 * --syntax-accent: hsl(230, 100%, 66%);
 * From syntax-variables.less
 * --syntax-selection-color: hsl(230, 1%, 90%);
 * --syntax-gutter-background-color-selected: hsl(230, 1%, 90%);
 * --syntax-cursor-line: hsla(230, 8%, 24%, 0.05);
 */
code[class*=language-],
pre[class*=language-] {
  background: hsl(230, 1%, 98%);
  color: hsl(230, 8%, 24%);
  font-family: "Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Selection */
code[class*=language-]::-moz-selection,
code[class*=language-] *::-moz-selection,
pre[class*=language-] *::-moz-selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

code[class*=language-]::selection,
code[class*=language-] *::selection,
pre[class*=language-] *::selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

/* Code blocks */
pre[class*=language-] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.2em 0.3em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.cdata {
  color: hsl(230, 4%, 64%);
}

.token.doctype,
.token.punctuation,
.token.entity {
  color: hsl(230, 8%, 24%);
}

.token.attr-name,
.token.class-name,
.token.boolean,
.token.constant,
.token.number,
.token.atrule {
  color: hsl(35, 99%, 36%);
}

.token.keyword {
  color: hsl(301, 63%, 40%);
}

.token.property,
.token.tag,
.token.symbol,
.token.deleted,
.token.important {
  color: hsl(5, 74%, 59%);
}

.token.selector,
.token.string,
.token.char,
.token.builtin,
.token.inserted,
.token.regex,
.token.attr-value,
.token.attr-value > .token.punctuation {
  color: hsl(119, 34%, 47%);
}

.token.variable,
.token.operator,
.token.function {
  color: hsl(221, 87%, 60%);
}

.token.url {
  color: hsl(198, 99%, 37%);
}

/* HTML overrides */
.token.attr-value > .token.punctuation.attr-equals,
.token.special-attr > .token.attr-value > .token.value.css {
  color: hsl(230, 8%, 24%);
}

/* CSS overrides */
.language-css .token.selector {
  color: hsl(5, 74%, 59%);
}

.language-css .token.property {
  color: hsl(230, 8%, 24%);
}

.language-css .token.function,
.language-css .token.url > .token.function {
  color: hsl(198, 99%, 37%);
}

.language-css .token.url > .token.string.url {
  color: hsl(119, 34%, 47%);
}

.language-css .token.important,
.language-css .token.atrule .token.rule {
  color: hsl(301, 63%, 40%);
}

/* JS overrides */
.language-javascript .token.operator {
  color: hsl(301, 63%, 40%);
}

.language-javascript .token.template-string > .token.interpolation > .token.interpolation-punctuation.punctuation {
  color: hsl(344, 84%, 43%);
}

/* JSON overrides */
.language-json .token.operator {
  color: hsl(230, 8%, 24%);
}

.language-json .token.null.keyword {
  color: hsl(35, 99%, 36%);
}

/* MD overrides */
.language-markdown .token.url,
.language-markdown .token.url > .token.operator,
.language-markdown .token.url-reference.url > .token.string {
  color: hsl(230, 8%, 24%);
}

.language-markdown .token.url > .token.content {
  color: hsl(221, 87%, 60%);
}

.language-markdown .token.url > .token.url,
.language-markdown .token.url-reference.url {
  color: hsl(198, 99%, 37%);
}

.language-markdown .token.blockquote.punctuation,
.language-markdown .token.hr.punctuation {
  color: hsl(230, 4%, 64%);
  font-style: italic;
}

.language-markdown .token.code-snippet {
  color: hsl(119, 34%, 47%);
}

.language-markdown .token.bold .token.content {
  color: hsl(35, 99%, 36%);
}

.language-markdown .token.italic .token.content {
  color: hsl(301, 63%, 40%);
}

.language-markdown .token.strike .token.content,
.language-markdown .token.strike .token.punctuation,
.language-markdown .token.list.punctuation,
.language-markdown .token.title.important > .token.punctuation {
  color: hsl(5, 74%, 59%);
}

/* General */
.token.bold {
  font-weight: bold;
}

.token.comment,
.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.namespace {
  opacity: 0.8;
}

/* Plugin overrides */
/* Selectors should have higher specificity than those in the plugins' default stylesheets */
/* Show Invisibles plugin overrides */
.token.token.tab:not(:empty):before,
.token.token.cr:before,
.token.token.lf:before,
.token.token.space:before {
  color: hsla(230, 8%, 24%, 0.2);
}

/* Toolbar plugin overrides */
/* Space out all buttons and move them away from the right edge of the code block */
div.code-toolbar > .toolbar.toolbar > .toolbar-item {
  margin-right: 0.4em;
}

/* Styling the buttons */
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 6%, 44%);
  padding: 0.1em 0.4em;
  border-radius: 0.3em;
}

div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:focus {
  background: hsl(230, 1%, 78%); /* custom: darken(--syntax-bg, 20%) */
  color: hsl(230, 8%, 24%);
}

/* Line Highlight plugin overrides */
/* The highlighted line itself */
.line-highlight.line-highlight {
  background: hsla(230, 8%, 24%, 0.05);
}

/* Default line numbers in Line Highlight plugin */
.line-highlight.line-highlight:before,
.line-highlight.line-highlight[data-end]:after {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 8%, 24%);
  padding: 0.1em 0.6em;
  border-radius: 0.3em;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); /* same as Toolbar plugin default */
}

/* Hovering over a linkable line number (in the gutter area) */
/* Requires Line Numbers plugin as well */
pre[id].linkable-line-numbers.linkable-line-numbers span.line-numbers-rows > span:hover:before {
  background-color: hsla(230, 8%, 24%, 0.05);
}

/* Line Numbers and Command Line plugins overrides */
/* Line separating gutter from coding area */
.line-numbers.line-numbers .line-numbers-rows,
.command-line .command-line-prompt {
  border-right-color: hsla(230, 8%, 24%, 0.2);
}

/* Stuff in the gutter */
.line-numbers .line-numbers-rows > span:before,
.command-line .command-line-prompt > span:before {
  color: hsl(230, 1%, 62%);
}

/* Match Braces plugin overrides */
/* Note: Outline colour is inherited from the braces */
.rainbow-braces .token.token.punctuation.brace-level-1,
.rainbow-braces .token.token.punctuation.brace-level-5,
.rainbow-braces .token.token.punctuation.brace-level-9 {
  color: hsl(5, 74%, 59%);
}

.rainbow-braces .token.token.punctuation.brace-level-2,
.rainbow-braces .token.token.punctuation.brace-level-6,
.rainbow-braces .token.token.punctuation.brace-level-10 {
  color: hsl(119, 34%, 47%);
}

.rainbow-braces .token.token.punctuation.brace-level-3,
.rainbow-braces .token.token.punctuation.brace-level-7,
.rainbow-braces .token.token.punctuation.brace-level-11 {
  color: hsl(221, 87%, 60%);
}

.rainbow-braces .token.token.punctuation.brace-level-4,
.rainbow-braces .token.token.punctuation.brace-level-8,
.rainbow-braces .token.token.punctuation.brace-level-12 {
  color: hsl(301, 63%, 40%);
}

/* Diff Highlight plugin overrides */
/* Taken from https://github.com/atom/github/blob/master/styles/variables.less */
pre.diff-highlight > code .token.token.deleted:not(.prefix),
pre > code.diff-highlight .token.token.deleted:not(.prefix) {
  background-color: hsla(353, 100%, 66%, 0.15);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::-moz-selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix),
pre > code.diff-highlight .token.token.inserted:not(.prefix) {
  background-color: hsla(137, 100%, 55%, 0.15);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::-moz-selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

/* Previewers plugin overrides */
/* Based on https://github.com/atom-community/atom-ide-datatip/blob/master/styles/atom-ide-datatips.less and https://github.com/atom/atom/blob/master/packages/one-light-ui */
/* Border around popup */
.prism-previewer.prism-previewer:before,
.prism-previewer-gradient.prism-previewer-gradient div {
  border-color: hsl(0, 0%, 95%);
}

/* Angle and time should remain as circles and are hence not included */
.prism-previewer-color.prism-previewer-color:before,
.prism-previewer-gradient.prism-previewer-gradient div,
.prism-previewer-easing.prism-previewer-easing:before {
  border-radius: 0.3em;
}

/* Triangles pointing to the code */
.prism-previewer.prism-previewer:after {
  border-top-color: hsl(0, 0%, 95%);
}

.prism-previewer-flipped.prism-previewer-flipped.after {
  border-bottom-color: hsl(0, 0%, 95%);
}

/* Background colour within the popup */
.prism-previewer-angle.prism-previewer-angle:before,
.prism-previewer-time.prism-previewer-time:before,
.prism-previewer-easing.prism-previewer-easing {
  background: hsl(0, 0%, 100%);
}

/* For angle, this is the positive area (eg. 90deg will display one quadrant in this colour) */
/* For time, this is the alternate colour */
.prism-previewer-angle.prism-previewer-angle circle,
.prism-previewer-time.prism-previewer-time circle {
  stroke: hsl(230, 8%, 24%);
  stroke-opacity: 1;
}

/* Stroke colours of the handle, direction point, and vector itself */
.prism-previewer-easing.prism-previewer-easing circle,
.prism-previewer-easing.prism-previewer-easing path,
.prism-previewer-easing.prism-previewer-easing line {
  stroke: hsl(230, 8%, 24%);
}

/* Fill colour of the handle */
.prism-previewer-easing.prism-previewer-easing circle {
  fill: transparent;
}

body.night-mode {
  /**
   * One Dark theme for prism.js
   * Based on Atom's One Dark theme: https://github.com/atom/atom/tree/master/packages/one-dark-syntax
   */
  /**
   * One Dark colours (accurate as of commit 8ae45ca on 6 Sep 2018)
   * From colors.less
   * --mono-1: hsl(220, 14%, 71%);
   * --mono-2: hsl(220, 9%, 55%);
   * --mono-3: hsl(220, 10%, 40%);
   * --hue-1: hsl(187, 47%, 55%);
   * --hue-2: hsl(207, 82%, 66%);
   * --hue-3: hsl(286, 60%, 67%);
   * --hue-4: hsl(95, 38%, 62%);
   * --hue-5: hsl(355, 65%, 65%);
   * --hue-5-2: hsl(5, 48%, 51%);
   * --hue-6: hsl(29, 54%, 61%);
   * --hue-6-2: hsl(39, 67%, 69%);
   * --syntax-fg: hsl(220, 14%, 71%);
   * --syntax-bg: hsl(220, 13%, 18%);
   * --syntax-gutter: hsl(220, 14%, 45%);
   * --syntax-guide: hsla(220, 14%, 71%, 0.15);
   * --syntax-accent: hsl(220, 100%, 66%);
   * From syntax-variables.less
   * --syntax-selection-color: hsl(220, 13%, 28%);
   * --syntax-gutter-background-color-selected: hsl(220, 13%, 26%);
   * --syntax-cursor-line: hsla(220, 100%, 80%, 0.04);
   */
  /* Selection */
  /* Code blocks */
  /* Inline code */
  /* Print */
  /* HTML overrides */
  /* CSS overrides */
  /* JS overrides */
  /* JSON overrides */
  /* MD overrides */
  /* General */
  /* Plugin overrides */
  /* Selectors should have higher specificity than those in the plugins' default stylesheets */
  /* Show Invisibles plugin overrides */
  /* Toolbar plugin overrides */
  /* Space out all buttons and move them away from the right edge of the code block */
  /* Styling the buttons */
  /* Line Highlight plugin overrides */
  /* The highlighted line itself */
  /* Default line numbers in Line Highlight plugin */
  /* Hovering over a linkable line number (in the gutter area) */
  /* Requires Line Numbers plugin as well */
  /* Line Numbers and Command Line plugins overrides */
  /* Line separating gutter from coding area */
  /* Stuff in the gutter */
  /* Match Braces plugin overrides */
  /* Note: Outline colour is inherited from the braces */
  /* Diff Highlight plugin overrides */
  /* Taken from https://github.com/atom/github/blob/master/styles/variables.less */
  /* Previewers plugin overrides */
  /* Based on https://github.com/atom-community/atom-ide-datatip/blob/master/styles/atom-ide-datatips.less and https://github.com/atom/atom/blob/master/packages/one-dark-ui */
  /* Border around popup */
  /* Angle and time should remain as circles and are hence not included */
  /* Triangles pointing to the code */
  /* Background colour within the popup */
  /* For angle, this is the positive area (eg. 90deg will display one quadrant in this colour) */
  /* For time, this is the alternate colour */
  /* Stroke colours of the handle, direction point, and vector itself */
  /* Fill colour of the handle */
}
body.night-mode code[class*=language-],
body.night-mode pre[class*=language-] {
  background: hsl(220, 13%, 18%);
  color: hsl(220, 14%, 71%);
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: "Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
body.night-mode code[class*=language-]::-moz-selection,
body.night-mode code[class*=language-] *::-moz-selection,
body.night-mode pre[class*=language-] *::-moz-selection {
  background: hsl(220, 13%, 28%);
  color: inherit;
  text-shadow: none;
}
body.night-mode code[class*=language-]::selection,
body.night-mode code[class*=language-] *::selection,
body.night-mode pre[class*=language-] *::selection {
  background: hsl(220, 13%, 28%);
  color: inherit;
  text-shadow: none;
}
body.night-mode pre[class*=language-] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}
body.night-mode :not(pre) > code[class*=language-] {
  padding: 0.2em 0.3em;
  border-radius: 0.3em;
  white-space: normal;
}
@media print {
  body.night-mode code[class*=language-],
  body.night-mode pre[class*=language-] {
    text-shadow: none;
  }
}
body.night-mode .token.comment,
body.night-mode .token.prolog,
body.night-mode .token.cdata {
  color: hsl(220, 10%, 40%);
}
body.night-mode .token.doctype,
body.night-mode .token.punctuation,
body.night-mode .token.entity {
  color: hsl(220, 14%, 71%);
}
body.night-mode .token.attr-name,
body.night-mode .token.class-name,
body.night-mode .token.boolean,
body.night-mode .token.constant,
body.night-mode .token.number,
body.night-mode .token.atrule {
  color: hsl(29, 54%, 61%);
}
body.night-mode .token.keyword {
  color: hsl(286, 60%, 67%);
}
body.night-mode .token.property,
body.night-mode .token.tag,
body.night-mode .token.symbol,
body.night-mode .token.deleted,
body.night-mode .token.important {
  color: hsl(355, 65%, 65%);
}
body.night-mode .token.selector,
body.night-mode .token.string,
body.night-mode .token.char,
body.night-mode .token.builtin,
body.night-mode .token.inserted,
body.night-mode .token.regex,
body.night-mode .token.attr-value,
body.night-mode .token.attr-value > .token.punctuation {
  color: hsl(95, 38%, 62%);
}
body.night-mode .token.variable,
body.night-mode .token.operator,
body.night-mode .token.function {
  color: hsl(207, 82%, 66%);
}
body.night-mode .token.url {
  color: hsl(187, 47%, 55%);
}
body.night-mode .token.attr-value > .token.punctuation.attr-equals,
body.night-mode .token.special-attr > .token.attr-value > .token.value.css {
  color: hsl(220, 14%, 71%);
}
body.night-mode .language-css .token.selector {
  color: hsl(355, 65%, 65%);
}
body.night-mode .language-css .token.property {
  color: hsl(220, 14%, 71%);
}
body.night-mode .language-css .token.function,
body.night-mode .language-css .token.url > .token.function {
  color: hsl(187, 47%, 55%);
}
body.night-mode .language-css .token.url > .token.string.url {
  color: hsl(95, 38%, 62%);
}
body.night-mode .language-css .token.important,
body.night-mode .language-css .token.atrule .token.rule {
  color: hsl(286, 60%, 67%);
}
body.night-mode .language-javascript .token.operator {
  color: hsl(286, 60%, 67%);
}
body.night-mode .language-javascript .token.template-string > .token.interpolation > .token.interpolation-punctuation.punctuation {
  color: hsl(5, 48%, 51%);
}
body.night-mode .language-json .token.operator {
  color: hsl(220, 14%, 71%);
}
body.night-mode .language-json .token.null.keyword {
  color: hsl(29, 54%, 61%);
}
body.night-mode .language-markdown .token.url,
body.night-mode .language-markdown .token.url > .token.operator,
body.night-mode .language-markdown .token.url-reference.url > .token.string {
  color: hsl(220, 14%, 71%);
}
body.night-mode .language-markdown .token.url > .token.content {
  color: hsl(207, 82%, 66%);
}
body.night-mode .language-markdown .token.url > .token.url,
body.night-mode .language-markdown .token.url-reference.url {
  color: hsl(187, 47%, 55%);
}
body.night-mode .language-markdown .token.blockquote.punctuation,
body.night-mode .language-markdown .token.hr.punctuation {
  color: hsl(220, 10%, 40%);
  font-style: italic;
}
body.night-mode .language-markdown .token.code-snippet {
  color: hsl(95, 38%, 62%);
}
body.night-mode .language-markdown .token.bold .token.content {
  color: hsl(29, 54%, 61%);
}
body.night-mode .language-markdown .token.italic .token.content {
  color: hsl(286, 60%, 67%);
}
body.night-mode .language-markdown .token.strike .token.content,
body.night-mode .language-markdown .token.strike .token.punctuation,
body.night-mode .language-markdown .token.list.punctuation,
body.night-mode .language-markdown .token.title.important > .token.punctuation {
  color: hsl(355, 65%, 65%);
}
body.night-mode .token.bold {
  font-weight: bold;
}
body.night-mode .token.comment,
body.night-mode .token.italic {
  font-style: italic;
}
body.night-mode .token.entity {
  cursor: help;
}
body.night-mode .token.namespace {
  opacity: 0.8;
}
body.night-mode .token.token.tab:not(:empty):before,
body.night-mode .token.token.cr:before,
body.night-mode .token.token.lf:before,
body.night-mode .token.token.space:before {
  color: hsla(220, 14%, 71%, 0.15);
  text-shadow: none;
}
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item {
  margin-right: 0.4em;
}
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > button,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > a,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > span {
  background: hsl(220, 13%, 26%);
  color: hsl(220, 9%, 55%);
  padding: 0.1em 0.4em;
  border-radius: 0.3em;
}
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:hover,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:focus,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:hover,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:focus,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:hover,
body.night-mode div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:focus {
  background: hsl(220, 13%, 28%);
  color: hsl(220, 14%, 71%);
}
body.night-mode .line-highlight.line-highlight {
  background: hsla(220, 100%, 80%, 0.04);
}
body.night-mode .line-highlight.line-highlight:before,
body.night-mode .line-highlight.line-highlight[data-end]:after {
  background: hsl(220, 13%, 26%);
  color: hsl(220, 14%, 71%);
  padding: 0.1em 0.6em;
  border-radius: 0.3em;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); /* same as Toolbar plugin default */
}
body.night-mode pre[id].linkable-line-numbers.linkable-line-numbers span.line-numbers-rows > span:hover:before {
  background-color: hsla(220, 100%, 80%, 0.04);
}
body.night-mode .line-numbers.line-numbers .line-numbers-rows,
body.night-mode .command-line .command-line-prompt {
  border-right-color: hsla(220, 14%, 71%, 0.15);
}
body.night-mode .line-numbers .line-numbers-rows > span:before,
body.night-mode .command-line .command-line-prompt > span:before {
  color: hsl(220, 14%, 45%);
}
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-1,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-5,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-9 {
  color: hsl(355, 65%, 65%);
}
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-2,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-6,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-10 {
  color: hsl(95, 38%, 62%);
}
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-3,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-7,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-11 {
  color: hsl(207, 82%, 66%);
}
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-4,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-8,
body.night-mode .rainbow-braces .token.token.punctuation.brace-level-12 {
  color: hsl(286, 60%, 67%);
}
body.night-mode pre.diff-highlight > code .token.token.deleted:not(.prefix),
body.night-mode pre > code.diff-highlight .token.token.deleted:not(.prefix) {
  background-color: hsla(353, 100%, 66%, 0.15);
}
body.night-mode pre.diff-highlight > code .token.token.deleted:not(.prefix)::-moz-selection,
body.night-mode pre.diff-highlight > code .token.token.deleted:not(.prefix) *::-moz-selection,
body.night-mode pre > code.diff-highlight .token.token.deleted:not(.prefix)::-moz-selection,
body.night-mode pre > code.diff-highlight .token.token.deleted:not(.prefix) *::-moz-selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}
body.night-mode pre.diff-highlight > code .token.token.deleted:not(.prefix)::selection,
body.night-mode pre.diff-highlight > code .token.token.deleted:not(.prefix) *::selection,
body.night-mode pre > code.diff-highlight .token.token.deleted:not(.prefix)::selection,
body.night-mode pre > code.diff-highlight .token.token.deleted:not(.prefix) *::selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}
body.night-mode pre.diff-highlight > code .token.token.inserted:not(.prefix),
body.night-mode pre > code.diff-highlight .token.token.inserted:not(.prefix) {
  background-color: hsla(137, 100%, 55%, 0.15);
}
body.night-mode pre.diff-highlight > code .token.token.inserted:not(.prefix)::-moz-selection,
body.night-mode pre.diff-highlight > code .token.token.inserted:not(.prefix) *::-moz-selection,
body.night-mode pre > code.diff-highlight .token.token.inserted:not(.prefix)::-moz-selection,
body.night-mode pre > code.diff-highlight .token.token.inserted:not(.prefix) *::-moz-selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}
body.night-mode pre.diff-highlight > code .token.token.inserted:not(.prefix)::selection,
body.night-mode pre.diff-highlight > code .token.token.inserted:not(.prefix) *::selection,
body.night-mode pre > code.diff-highlight .token.token.inserted:not(.prefix)::selection,
body.night-mode pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}
body.night-mode .prism-previewer.prism-previewer:before,
body.night-mode .prism-previewer-gradient.prism-previewer-gradient div {
  border-color: hsl(224, 13%, 17%);
}
body.night-mode .prism-previewer-color.prism-previewer-color:before,
body.night-mode .prism-previewer-gradient.prism-previewer-gradient div,
body.night-mode .prism-previewer-easing.prism-previewer-easing:before {
  border-radius: 0.3em;
}
body.night-mode .prism-previewer.prism-previewer:after {
  border-top-color: hsl(224, 13%, 17%);
}
body.night-mode .prism-previewer-flipped.prism-previewer-flipped.after {
  border-bottom-color: hsl(224, 13%, 17%);
}
body.night-mode .prism-previewer-angle.prism-previewer-angle:before,
body.night-mode .prism-previewer-time.prism-previewer-time:before,
body.night-mode .prism-previewer-easing.prism-previewer-easing {
  background: hsl(219, 13%, 22%);
}
body.night-mode .prism-previewer-angle.prism-previewer-angle circle,
body.night-mode .prism-previewer-time.prism-previewer-time circle {
  stroke: hsl(220, 14%, 71%);
  stroke-opacity: 1;
}
body.night-mode .prism-previewer-easing.prism-previewer-easing circle,
body.night-mode .prism-previewer-easing.prism-previewer-easing path,
body.night-mode .prism-previewer-easing.prism-previewer-easing line {
  stroke: hsl(220, 14%, 71%);
}
body.night-mode .prism-previewer-easing.prism-previewer-easing circle {
  fill: transparent;
}