/* Keep the X/Twitter icon visible even if script execution order changes in production. */
@media (prefers-color-scheme: light) {
  #twitter-icon {
    fill: #24292e !important;
  }
}

@media (prefers-color-scheme: dark) {
  #twitter-icon {
    fill: #f0f6fc !important;
  }
}

html[data-color-mode="light"] #twitter-icon {
  fill: #24292e !important;
}

html[data-color-mode="dark"] #twitter-icon {
  fill: #f0f6fc !important;
}
