Jump to content

Template:StyledTable/styles.css: Difference between revisions

From RetroTechCollection
No edit summary
Added dark mode support
 
Line 3: Line 3:
     background-color: #f8f8f8;
     background-color: #f8f8f8;
     color: #202122;
     color: #202122;
    border-radius: 8px;
    border: 1px solid #a2a9b1;
   }
   }


Line 10: Line 12:
   }
   }


   table.styled-table {
   table.styled-table td {
     border-radius: 8px;
     border-color: #a2a9b1;
    border: 1px solid #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;
    }
}
}

Latest revision as of 22:20, 26 March 2026

@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;
    }
}