Template:StyledTable/styles.css

Revision as of 22:20, 26 March 2026 by Josh (talk | contribs) (Added dark mode support)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
@media screen {
  table.styled-table {
    background-color: #f8f8f8;
    color: #202122;
    border-radius: 8px;
    border: 1px solid #a2a9b1;
  }

  table.styled-table th {
    background-color: #4B9CD3;
    color: white;
  }

  table.styled-table td {
    border-color: #a2a9b1;
  }
}

/* Dark mode */
html.skin-theme-clientpref-night table.styled-table {
    background-color: #2b2b2f;
    color: #e0e0e0;
    border-color: #4a4a50;
}

html.skin-theme-clientpref-night table.styled-table th {
    background-color: #2d6a9f;
    color: #ffffff;
}

html.skin-theme-clientpref-night table.styled-table td {
    border-color: #4a4a50;
    color: #e0e0e0;
}

@media (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os table.styled-table {
        background-color: #2b2b2f;
        color: #e0e0e0;
        border-color: #4a4a50;
    }

    html.skin-theme-clientpref-os table.styled-table th {
        background-color: #2d6a9f;
        color: #ffffff;
    }

    html.skin-theme-clientpref-os table.styled-table td {
        border-color: #4a4a50;
        color: #e0e0e0;
    }
}