primo-app
Version:
primo is an all-in-one ide, cms, component library, and static site generator
53 lines (46 loc) • 755 B
JavaScript
export const tailwindConfig = `{\n
\ttheme: {\n
\t\tcontainer: {\n
\t\t\tcenter: true\n
\t\t}\n
\t},\n
\tvariants: {}\n
}`
// TODO: Make these defaut site styles instead
export const pageStyles = `\
/* Default content styles */
.primo-content {
text-lg;
h1 {
text-3xl font-medium;
}
h2 {
text-2xl font-medium;
}
ul {
list-disc list-inside;
p {
inline;
}
}
ol {
list-decimal list-inside;
}
a {
text-blue-600 underline;
}
blockquote {
shadow-md p-6;
}
mark {
text-gray-900 bg-yellow-200;
}
lg {
h1 {
text-5xl;
}
h2 {
text-4xl;
}
}
}`