animagine-xl-3.1 / style.css
TheAwakenOne's picture
Updated font colors in style.css
0008e1a
raw
history blame
2.4 kB
:root {
--title-font-size: clamp(1.5rem, 6vw, 3rem);
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
--primary-color: #8B4049; /* Soft burgundy */
--secondary-color: #A67F8E; /* Muted mauve */
--accent-color: #D4A5A5; /* Soft rose */
--text-color: #6D4E4E; /* Muted brown */
--light-accent: #E8C5C5; /* Light rose */
}
h1 {
text-align: center;
font-size: var(--title-font-size);
display: block;
color: var(--primary-color);
}
h2 {
text-align: center;
font-size: 2rem;
display: block;
color: var(--secondary-color);
}
p {
color: var(--text-color);
}
#duplicate-button {
display: block;
margin: 1rem auto;
color: #fff;
background: var(--primary-color);
border-radius: 100vh;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease;
}
#duplicate-button:hover {
background: var(--secondary-color);
}
#component-0 {
max-width: 85%;
margin: 2rem auto;
padding: 2rem;
}
@media (max-width: 600px) {
#component-0 {
max-width: 100%;
padding: 0.5rem;
}
}
#title-container {
text-align: center;
padding: 2rem 0;
}
#title {
font-size: var(--title-font-size);
color: var(--primary-color);
font-family: 'Helvetica Neue', sans-serif;
text-transform: uppercase;
background: transparent;
}
#title span {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
background-clip: text;
color: transparent;
}
#subtitle {
text-align: center;
font-size: var(--subtitle-font-size);
margin-top: 1rem;
color: var(--secondary-color);
}
/* Additional text elements styling */
label {
color: var(--text-color);
}
input, textarea {
color: var(--text-color);
border: 1px solid var(--accent-color);
background-color: rgba(255, 255, 255, 0.9);
}
input:focus, textarea:focus {
border-color: var(--primary-color);
outline: none;
box-shadow: 0 0 5px var(--light-accent);
}
button {
color: #fff;
background: var(--primary-color);
transition: background-color 0.3s ease;
}
button:hover {
background: var(--secondary-color);
}
/* Links styling */
a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--secondary-color);
}
/* List items styling */
li {
color: var(--text-color);
}
/* Selection styling */
::selection {
background: var(--light-accent);
color: var(--primary-color);
}