mirror of https://github.com/jpanther/congo.git
224 lines
7.3 KiB
JavaScript
224 lines
7.3 KiB
JavaScript
const colors = require("tailwindcss/colors");
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./layouts/**/*.html",
|
|
"./content/**/*.{html,md}",
|
|
"./themes/congo/layouts/**/*.html",
|
|
"./themes/congo/content/**/*.{html,md}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
colors: {
|
|
transparent: "transparent",
|
|
neutral: {
|
|
DEFAULT: "var(--color-neutral)",
|
|
50: "var(--color-neutral-50)",
|
|
100: "var(--color-neutral-100)",
|
|
200: "var(--color-neutral-200)",
|
|
300: "var(--color-neutral-300)",
|
|
400: "var(--color-neutral-400)",
|
|
500: "var(--color-neutral-500)",
|
|
600: "var(--color-neutral-600)",
|
|
700: "var(--color-neutral-700)",
|
|
800: "var(--color-neutral-800)",
|
|
900: "var(--color-neutral-900)",
|
|
},
|
|
primary: {
|
|
50: "var(--color-primary-50)",
|
|
100: "var(--color-primary-100)",
|
|
200: "var(--color-primary-200)",
|
|
300: "var(--color-primary-300)",
|
|
400: "var(--color-primary-400)",
|
|
500: "var(--color-primary-500)",
|
|
600: "var(--color-primary-600)",
|
|
700: "var(--color-primary-700)",
|
|
800: "var(--color-primary-800)",
|
|
900: "var(--color-primary-900)",
|
|
},
|
|
secondary: {
|
|
50: "var(--color-secondary-50)",
|
|
100: "var(--color-secondary-100)",
|
|
200: "var(--color-secondary-200)",
|
|
300: "var(--color-secondary-300)",
|
|
400: "var(--color-secondary-400)",
|
|
500: "var(--color-secondary-500)",
|
|
600: "var(--color-secondary-600)",
|
|
700: "var(--color-secondary-700)",
|
|
800: "var(--color-secondary-800)",
|
|
900: "var(--color-secondary-900)",
|
|
},
|
|
},
|
|
extend: {
|
|
typography: (theme) => ({
|
|
DEFAULT: {
|
|
css: [
|
|
{
|
|
color: theme("colors.neutral.700"),
|
|
a: {
|
|
color: theme("colors.primary.700"),
|
|
textDecoration: "underline",
|
|
textDecorationColor: theme("colors.primary.300"),
|
|
fontWeight: "500",
|
|
"&:hover": {
|
|
color: `${theme("colors.neutral.DEFAULT")} !important`,
|
|
textDecoration: "none !important",
|
|
backgroundColor: `${theme("colors.primary.600")} !important`,
|
|
borderRadius: "0.09rem",
|
|
},
|
|
},
|
|
strong: {
|
|
color: theme("colors.neutral.900"),
|
|
},
|
|
"ol > li::before": {
|
|
color: theme("colors.neutral.800"),
|
|
},
|
|
"ul > li::before": {
|
|
backgroundColor: theme("colors.neutral.500"),
|
|
},
|
|
hr: {
|
|
borderColor: theme("colors.neutral.200"),
|
|
},
|
|
blockquote: {
|
|
color: theme("colors.neutral.800"),
|
|
borderLeftColor: theme("colors.primary.200"),
|
|
borderRightColor: theme("colors.primary.200"),
|
|
},
|
|
h1: {
|
|
color: theme("colors.neutral.900"),
|
|
position: "relative",
|
|
},
|
|
h2: {
|
|
color: theme("colors.neutral.800"),
|
|
position: "relative",
|
|
},
|
|
h3: {
|
|
color: theme("colors.neutral.800"),
|
|
position: "relative",
|
|
},
|
|
h4: {
|
|
color: theme("colors.neutral.800"),
|
|
position: "relative",
|
|
},
|
|
code: {
|
|
color: theme("colors.secondary.700"),
|
|
},
|
|
"a code": {
|
|
color: theme("colors.secondary.700"),
|
|
},
|
|
"pre code": {
|
|
color: theme("colors.neutral.700"),
|
|
},
|
|
pre: {
|
|
color: theme("colors.neutral.700"),
|
|
backgroundColor: theme("colors.neutral.50"),
|
|
},
|
|
"pre code": {
|
|
color: theme("colors.neutral.700"),
|
|
},
|
|
"thead th": {
|
|
color: theme("colors.neutral.800"),
|
|
},
|
|
"thead tr": {
|
|
borderBottomColor: theme("colors.neutral.500"),
|
|
},
|
|
"tbody tr": {
|
|
borderBottomColor: theme("colors.neutral.300"),
|
|
},
|
|
kbd: {
|
|
backgroundColor: theme("colors.neutral.200"),
|
|
padding: "0.1rem 0.4rem",
|
|
borderRadius: "0.25rem",
|
|
fontSize: "0.9rem",
|
|
fontWeight: "600",
|
|
},
|
|
mark: {
|
|
backgroundColor: theme("colors.secondary.200"),
|
|
padding: "0.1rem 0.2rem",
|
|
borderRadius: "0.12rem",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
light: {
|
|
css: [
|
|
{
|
|
color: theme("colors.neutral.300"),
|
|
a: {
|
|
color: theme("colors.primary.400"),
|
|
textDecorationColor: theme("colors.neutral.500"),
|
|
"&:hover": {
|
|
color: `${theme("colors.neutral.DEFAULT")} !important`,
|
|
textDecoration: "none !important",
|
|
},
|
|
},
|
|
strong: {
|
|
color: theme("colors.neutral.DEFAULT"),
|
|
},
|
|
"ol > li::before": {
|
|
color: theme("colors.neutral.400"),
|
|
},
|
|
"ul > li::before": {
|
|
backgroundColor: theme("colors.neutral.600"),
|
|
},
|
|
hr: {
|
|
borderColor: theme("colors.neutral.500"),
|
|
},
|
|
blockquote: {
|
|
color: theme("colors.neutral.200"),
|
|
borderLeftColor: theme("colors.primary.900"),
|
|
borderRightColor: theme("colors.primary.900"),
|
|
},
|
|
h1: {
|
|
color: theme("colors.neutral.DEFAULT"),
|
|
},
|
|
h2: {
|
|
color: theme("colors.neutral.50"),
|
|
},
|
|
h3: {
|
|
color: theme("colors.neutral.50"),
|
|
},
|
|
h4: {
|
|
color: theme("colors.neutral.50"),
|
|
},
|
|
"figure figcaption": {
|
|
color: theme("colors.neutral.400"),
|
|
},
|
|
code: {
|
|
color: theme("colors.secondary.400"),
|
|
},
|
|
"a code": {
|
|
color: theme("colors.secondary.400"),
|
|
},
|
|
pre: {
|
|
color: theme("colors.neutral.200"),
|
|
backgroundColor: theme("colors.neutral.700"),
|
|
},
|
|
"pre code": {
|
|
color: theme("colors.neutral.200"),
|
|
},
|
|
"thead th": {
|
|
color: theme("colors.neutral.DEFAULT"),
|
|
},
|
|
"thead tr": {
|
|
borderBottomColor: theme("colors.neutral.500"),
|
|
},
|
|
"tbody tr": {
|
|
borderBottomColor: theme("colors.neutral.700"),
|
|
},
|
|
kbd: {
|
|
backgroundColor: theme("colors.neutral.700"),
|
|
color: theme("colors.neutral.300"),
|
|
},
|
|
mark: {
|
|
backgroundColor: theme("colors.secondary.400"),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|