Marketing-Email-Generator / monochrome-theme.css
Darshan-BugendaiTech's picture
Create monochrome-theme.css
43ab5c4
raw
history blame
678 Bytes
body {
background-color: #222;
color: #fff;
}
.gradio-container {
background-color: #222;
border: 1px solid #333;
}
.gradio-title {
color: #fff;
font-size: 1.5rem;
font-weight: bold;
}
.gradio-component {
padding: 1rem;
border: 1px solid #333;
}
.gradio-component label {
color: #fff;
font-size: 1rem;
font-weight: bold;
}
.gradio-component input,
.gradio-component textarea {
background-color: #333;
border: 1px solid #444;
color: #fff;
padding: 0.5rem;
font-size: 1rem;
}
.gradio-component button {
background-color: #4285F4;
border: 1px solid #4285F4;
color: #fff;
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
}