Bones/css/themes/crimson-red.css
2023-11-13 23:54:24 +01:00

31 lines
737 B
CSS

/* Light red theme with pinkish undertones */
.crimson-red {
/* Colors used for primary elements such as primary buttons and links */
--primary: #d12245;
--primary-focus: #DC143C;
--primary-background: #ec375b;
--primary-text: #ffffff;
/* The color of non-primary elements such as standard buttons */
--muted: #555;
--muted-border: #bbb;
--muted-focus: #333;
--muted-border-focused: #888;
/* Text color on page for all elements */
--text: #222;
/* Page background color and highlights */
--background: #FFF;
--background-highlight: #f1f1f1;
/* Code blocks */
--code: #222;
--code-background: #FFFDFD;
--code-border: #f3eded;
/* Forms */
--form-background: #FFF;
--form-border: #D1D1D1;
}