CoolFace
Apppublic

vitruviy/style-symphony

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css20 linesDownload Raw Back to css
1/* Main CSS file */2:root {3    --primary-color: #667eea;4    --secondary-color: #764ba2;5    --accent-color: #ff6b6b;6    --text-color: #2d3748;7    --light-bg: #f7fafc;8    --dark-bg: #1a202c;9    --border-radius: 8px;10    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);11}12 13body {14    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;15    margin: 0;16    padding: 0;17    color: var(--text-color);18    background-color: var(--light-bg);19    line-height: 1.6;20}