Difference between revisions of "User:Lordanubarak/vector.css"

From Final Fantasy XIV Online Wiki
Jump to navigation Jump to search
(Created page with "→‎Background color similar to GPT/Youtube/Discord dark mode: body, .mw-body, #content { background-color: #2c2f33; →‎dark gray shade: color: #ffffff; /* white te...")
 
m
Line 15: Line 15:
}
}


/* Tables */
/* Tables - alternating row colors */
table tr:nth-child(odd) {
    background-color: #23272a; /* darker shade for odd rows */
}
 
table tr:nth-child(even) {
    background-color: #2c2f33; /* slightly lighter shade for even rows */
}
 
table {
table {
    background-color: #23272a; /* slightly darker for tables */
     color: #ffffff;
     color: #ffffff;
     border-color: #7289da; /* blue border to match links */
     border-color: #7289da; /* blue border to match links */
Line 37: Line 44:
/* Footer */
/* Footer */
#footer {
#footer {
     background-color: #23272a;
     background-color
    color: #ffffff;
}

Revision as of 21:18, 29 September 2024

/* Background color similar to GPT/Youtube/Discord dark mode */
body, .mw-body, #content {
    background-color: #2c2f33; /* dark gray shade */
    color: #ffffff; /* white text */
}

/* Links */
a {
    color: #7289da; /* Discord link color */
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff; /* white for headers */
}

/* Tables - alternating row colors */
table tr:nth-child(odd) {
    background-color: #23272a; /* darker shade for odd rows */
}

table tr:nth-child(even) {
    background-color: #2c2f33; /* slightly lighter shade for even rows */
}

table {
    color: #ffffff;
    border-color: #7289da; /* blue border to match links */
}

/* Input fields, buttons, and other interactive elements */
input, select, textarea, button {
    background-color: #23272a; /* dark background for input elements */
    color: #ffffff;
    border: 1px solid #7289da; /* subtle blue border */
}

/* Sidebar */
#mw-panel, #p-logo {
    background-color: #23272a;
    color: #ffffff;
}

/* Footer */
#footer {
    background-color