apos-docs
Version:
Documentation static site generator built with Eleventy.
31 lines (26 loc) • 852 B
CSS
/* source(none) turns off automatic detection, which otherwise scans node_modules and
generates utilities for any class-like string it finds in there. The sources below
are the only places class names actually come from. */
@import "tailwindcss" source(none);
@plugin "@tailwindcss/typography";
@source "../_includes";
@source "../_plugins";
@source "../docs";
@theme {
--color-code-blue: #3498db;
--color-code-gray: #5c6370;
--color-code-dark: #263040;
--color-code-green: #2ecc71;
--color-code-indigo: #6c71c4;
--color-code-light: #d2d6db;
--color-code-orange: #e67e22;
--color-code-red: #e74c3c;
--color-code-yellow: #f1c40f;
--color-code-white: #efefef;
--color-code-header: #111111;
--color-code: #080808;
--font-sans: Inter, sans-serif;
--spacing-2px: 2px;
--spacing-5px: 5px;
--spacing-16\/9: 56.25%;
}