This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/* Rendered Markdown */
|
||||
|
||||
.markdown {
|
||||
@apply text-cyan-50 leading-7 text-base;
|
||||
@apply text-seafoam-50 leading-7 text-base;
|
||||
}
|
||||
|
||||
/* Headings */
|
||||
@@ -11,26 +11,26 @@
|
||||
.markdown h4,
|
||||
.markdown h5,
|
||||
.markdown h6 {
|
||||
@apply font-semibold text-cyan-300 mt-6 mb-2 leading-tight;
|
||||
@apply font-semibold text-seafoam-300 mt-6 mb-2 leading-tight;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
@apply text-3xl border-b border-cyan-900 pb-1;
|
||||
@apply text-3xl border-b border-seafoam-900 pb-1;
|
||||
}
|
||||
.markdown h2 {
|
||||
@apply text-2xl border-b border-cyan-900 pb-1;
|
||||
@apply text-2xl border-b border-seafoam-900 pb-1;
|
||||
}
|
||||
.markdown h3 {
|
||||
@apply text-xl text-cyan-200;
|
||||
@apply text-xl text-seafoam-200;
|
||||
}
|
||||
.markdown h4 {
|
||||
@apply text-lg text-cyan-200;
|
||||
@apply text-lg text-seafoam-200;
|
||||
}
|
||||
.markdown h5 {
|
||||
@apply text-base text-cyan-100;
|
||||
@apply text-base text-seafoam-100;
|
||||
}
|
||||
.markdown h6 {
|
||||
@apply text-sm text-cyan-100;
|
||||
@apply text-sm text-seafoam-100;
|
||||
}
|
||||
|
||||
.markdown p {
|
||||
@@ -38,33 +38,33 @@
|
||||
}
|
||||
|
||||
.markdown a {
|
||||
@apply text-cyan-400 underline underline-offset-2 transition-colors duration-150 hover:text-cyan-300;
|
||||
@apply text-seafoam-400 underline underline-offset-2 transition-colors duration-150 hover:text-seafoam-300;
|
||||
}
|
||||
|
||||
.markdown strong {
|
||||
@apply font-bold text-cyan-100;
|
||||
@apply font-bold text-seafoam-100;
|
||||
}
|
||||
.markdown em {
|
||||
@apply italic text-cyan-200;
|
||||
@apply italic text-seafoam-200;
|
||||
}
|
||||
|
||||
.markdown code {
|
||||
@apply font-mono text-sm bg-cyan-950 text-cyan-300 px-1 py-0.5 rounded border border-cyan-900;
|
||||
@apply font-mono text-sm bg-seafoam-950 text-seafoam-300 px-1 py-0.5 rounded border border-seafoam-900;
|
||||
}
|
||||
|
||||
.markdown pre {
|
||||
@apply bg-cyan-950 border border-cyan-900 rounded-lg px-5 py-4 overflow-x-auto my-4;
|
||||
@apply bg-seafoam-950 border border-seafoam-900 rounded-lg px-5 py-4 overflow-x-auto my-4;
|
||||
}
|
||||
.markdown pre code {
|
||||
@apply bg-transparent border-0 p-0 text-sm text-cyan-100;
|
||||
@apply bg-transparent border-0 p-0 text-sm text-seafoam-100;
|
||||
}
|
||||
|
||||
.markdown blockquote {
|
||||
@apply border-l-2 border-cyan-700 my-4 px-4 py-2 bg-cyan-950 text-cyan-200 rounded-r italic;
|
||||
@apply border-l-2 border-seafoam-700 my-4 px-4 py-2 bg-seafoam-950 text-seafoam-200 rounded-r italic;
|
||||
}
|
||||
|
||||
.markdown hr {
|
||||
@apply border-0 border-t border-cyan-900 my-6;
|
||||
@apply border-0 border-t border-seafoam-900 my-6;
|
||||
}
|
||||
.markdown ul,
|
||||
.markdown ol {
|
||||
@@ -80,7 +80,7 @@
|
||||
@apply my-1;
|
||||
}
|
||||
.markdown li::marker {
|
||||
@apply text-cyan-700;
|
||||
@apply text-seafoam-700;
|
||||
}
|
||||
|
||||
.markdown ul ul,
|
||||
@@ -95,22 +95,22 @@
|
||||
@apply block w-full border-collapse my-4 text-sm overflow-x-auto;
|
||||
}
|
||||
.markdown thead {
|
||||
@apply bg-cyan-950;
|
||||
@apply bg-seafoam-950;
|
||||
}
|
||||
.markdown th {
|
||||
@apply text-left px-3 py-2 text-cyan-300 font-semibold border-b-2 border-cyan-700;
|
||||
@apply text-left px-3 py-2 text-seafoam-300 font-semibold border-b-2 border-seafoam-700;
|
||||
}
|
||||
.markdown td {
|
||||
@apply px-3 py-2 border-b border-cyan-900 text-cyan-100;
|
||||
@apply px-3 py-2 border-b border-seafoam-900 text-seafoam-100;
|
||||
}
|
||||
.markdown tbody tr:hover {
|
||||
@apply bg-cyan-950;
|
||||
@apply bg-seafoam-950;
|
||||
}
|
||||
|
||||
.markdown img {
|
||||
@apply max-w-full rounded-md border border-cyan-900 my-2;
|
||||
@apply max-w-full rounded-md border border-seafoam-900 my-2;
|
||||
}
|
||||
|
||||
.markdown input[type="checkbox"] {
|
||||
@apply accent-cyan-700 mr-1;
|
||||
@apply accent-seafoam-700 mr-1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user