Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,16 @@ const config = {
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
colorMode: {
defaultMode: 'light',
disableSwitch: false,
respectPrefersColorScheme: true,
},
announcementBar: {
id: 'under_development',
content: '🚧 <strong>Under Development</strong> — This site and product are launching early 2026.',
backgroundColor: '#7c3aed',
textColor: '#ffffff',
backgroundColor: '#0c1a2b',
textColor: '#f4f0e6',
isCloseable: false,
},
navbar: {
Expand Down
6 changes: 3 additions & 3 deletions site/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}

/* Dark mode with elegant contrast */
[data-theme="dark"] {
html[data-theme="dark"] {
/* Primary colors - Lighter purple for dark mode */
--ifm-color-primary: #a78bfa;
--ifm-color-primary-dark: #9333ea;
Expand Down Expand Up @@ -445,7 +445,7 @@ table thead {
--ifm-footer-link-hover-color: var(--ifm-color-primary);
}

[data-theme="dark"] {
html[data-theme="dark"] {
--ifm-footer-background-color: #1a1a1a;
--ifm-footer-color: #9ca3af;
--ifm-footer-title-color: #f3f4f6;
Expand Down Expand Up @@ -607,7 +607,7 @@ table thead {
--ifm-footer-title-color: var(--typr-paper);
}

[data-theme="dark"] {
html[data-theme="dark"] {
--typr-paper: #0c1019;
--typr-paper-2: #131829;
--typr-paper-warm: #131727;
Expand Down
12 changes: 6 additions & 6 deletions typr-scripts/src/scala/scripts/projectsToPublish.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ object projectsToPublish {
def include(crossName: model.CrossProjectName): Boolean =
crossName.name.value match {
// CLI app
case "typr" => true
case "typr" => true

// typr's upstream deps — needed so the published POM resolves
case "typr-codegen" => true
case "typr-dsl" => true
case "typr-dsl-scala" => true
case "typr-dsl-kotlin" => true
case "typr-codegen" => true
case "typr-dsl" => true
case "typr-dsl-scala" => true
case "typr-dsl-kotlin" => true

// legacy DSL integrations (still published for backwards-compat consumers)
case "typr-dsl-anorm" => true
Expand All @@ -25,6 +25,6 @@ object projectsToPublish {
case "typr-runtime-doobie" => true
case "typr-runtime-zio-jdbc" => true

case _ => false
case _ => false
}
}
Loading