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

From Final Fantasy XIV Online Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
/* Background color similar to GPT/Youtube/Discord dark mode */
/* Background color similar to GPT/Youtube/Discord dark mode */
body, .mw-body, #content {
body, .mw-body, #content {
     background-color: #2c2f33; /* dark gray shade */
     background-color: #2c2f33 !important; /* Dark gray shade */
     color: #ffffff; /* white text */
     color: #ffffff !important; /* White text */
}
}


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


/* Headers */
/* Headers */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
     color: #ffffff; /* white for headers */
     color: #ffffff !important; /* White for headers */
}
 
/* Table Headers */
.wikitable th {
    background-color: #40444b !important; /* Darker shade for header row */
    color: #ffffff !important; /* White text in headers */
}
}


/* Tables - alternating row colors */
/* Tables - alternating row colors */
.wikitable tbody tr:nth-child(odd) {
.wikitable tbody tr:nth-child(odd) {
     background-color: #23272a; /* darker shade for odd rows */
     background-color: #23272a !important; /* Dark shade for odd rows */
    color: #ffffff !important;
}
}


.wikitable tbody tr:nth-child(even) {
.wikitable tbody tr:nth-child(even) {
     background-color: #2c2f33; /* slightly lighter shade for even rows */
     background-color: #2c2f33 !important; /* Slightly lighter shade for even rows */
    color: #ffffff !important;
}
}


.wikitable {
.wikitable {
     color: #ffffff;
     color: #ffffff !important;
     border-color: #7289da; /* blue border to match links */
     border-color: #7289da !important; /* Blue border to match links */
}
}


/* Category links (bottom bar) */
/* Category links (bottom bar) */
#catlinks {
#catlinks {
     background-color: #23272a; /* dark shade for the bar */
     background-color: #23272a !important; /* Dark shade for the bar */
     color: #ffffff;
     color: #ffffff !important;
}
}


#catlinks a {
#catlinks a {
     color: #7289da; /* blue links in the category section */
     color: #7289da !important; /* Blue links in the category section */
}
}

Revision as of 21:34, 29 September 2024

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

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

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

/* Table Headers */
.wikitable th {
    background-color: #40444b !important; /* Darker shade for header row */
    color: #ffffff !important; /* White text in headers */
}

/* Tables - alternating row colors */
.wikitable tbody tr:nth-child(odd) {
    background-color: #23272a !important; /* Dark shade for odd rows */
    color: #ffffff !important;
}

.wikitable tbody tr:nth-child(even) {
    background-color: #2c2f33 !important; /* Slightly lighter shade for even rows */
    color: #ffffff !important;
}

.wikitable {
    color: #ffffff !important;
    border-color: #7289da !important; /* Blue border to match links */
}

/* Category links (bottom bar) */
#catlinks {
    background-color: #23272a !important; /* Dark shade for the bar */
    color: #ffffff !important;
}

#catlinks a {
    color: #7289da !important; /* Blue links in the category section */
}