mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 05:44:24 +00:00
96 lines
1.7 KiB
CSS
96 lines
1.7 KiB
CSS
:root {
|
|
/* Colors */
|
|
--color: #000;
|
|
--bg-color: #f9f9f9;
|
|
--primary-color: #fc4c02;
|
|
--secondary-color: #f68727;
|
|
--muted-color: #999;
|
|
--code-color: var(--primary-color);
|
|
--code-bg-color: #fff;
|
|
|
|
/* Typography */
|
|
--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
--code-font: Menlo, Consolas, Monaco, Lucida Console, monospace;
|
|
--bold: 700;
|
|
--x-bold: 900;
|
|
--line-height: 1.5em;
|
|
--line-height-heading: 1.3em;
|
|
|
|
/* Breakpoints */
|
|
--sm-screen: 640px;
|
|
}
|
|
|
|
/* Base
|
|
* *----------------------------------------------- */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--bg-color);
|
|
}
|
|
|
|
/* Typography
|
|
* *----------------------------------------------- */
|
|
|
|
html {
|
|
font-size: 16px;
|
|
font-family: var(--font);
|
|
line-height: var(--line-height);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
font-weight: var(--x-bold);
|
|
line-height: var(--line-height-heading);
|
|
letter-spacing: -0.005em;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0 0 0.25em 0;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
h3 {
|
|
margin: 1em 0 0.25em 0;
|
|
font-size: 1.06rem;
|
|
}
|
|
|
|
code {
|
|
font-family: var(--code-font);
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
|
|
/* -- Layout ------------------------------------------------------------------ */
|
|
|
|
.image-section {
|
|
border-bottom: 1px solid #ccc;
|
|
padding: 16px 16px 32px 16px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.swatch {
|
|
display: inline-block;
|
|
background: #dddddd;
|
|
}
|
|
|
|
.color .swatch {
|
|
width: 6rem;
|
|
height: 3rem;
|
|
}
|
|
|
|
.palette .swatch {
|
|
width: 3rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
.time {
|
|
color: var(--muted-color);
|
|
font-weight: normal;
|
|
}
|