VOOZH about

URL: https://www.nuget.org/packages/MonorailCss.Discovery/

⇱ NuGet Gallery | MonorailCss.Discovery 0.0.5-alpha.0.168




MonorailCss.Discovery 0.0.5-alpha.0.168

This is a prerelease version of MonorailCss.Discovery.
dotnet add package MonorailCss.Discovery --version 0.0.5-alpha.0.168
 
 
NuGet\Install-Package MonorailCss.Discovery -Version 0.0.5-alpha.0.168
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MonorailCss.Discovery" Version="0.0.5-alpha.0.168" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MonorailCss.Discovery" Version="0.0.5-alpha.0.168" />
 
Directory.Packages.props
<PackageReference Include="MonorailCss.Discovery" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MonorailCss.Discovery --version 0.0.5-alpha.0.168
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MonorailCss.Discovery, 0.0.5-alpha.0.168"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MonorailCss.Discovery@0.0.5-alpha.0.168
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MonorailCss.Discovery&version=0.0.5-alpha.0.168&prerelease
 
Install as a Cake Addin
#tool nuget:?package=MonorailCss.Discovery&version=0.0.5-alpha.0.168&prerelease
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

MonorailCSS

👁 Nuget (with prereleases)

MonorailCSS is a utility-first CSS library inspired heavily by Tailwind CSS. It's a JIT CSS compiler written in .NET that aims to be Tailwind CSS 4.3 compatible.

Basic Usage

Given a list of CSS classes, MonorailCSS will produce optimized CSS output.

var framework = new CssFramework();
var css = framework.Process("my-4 mx-4 text-red-500");

Will produce:

.mx-4 {
 margin-left: 1rem;
 margin-right: 1rem;
}
.my-4 {
 margin-bottom: 1rem;
 margin-top: 1rem;
}
.text-red-500 {
 color: var(--color-red-500);
}

You can also process collections of classes:

var classes = new[] { "bg-blue-500", "text-white", "p-4", "rounded-lg" };
var css = framework.Process(classes);

Customizing the Theme

The theme system uses CSS custom properties and can be customized to match your design system:

using System.Collections.Immutable;

// Start with the default theme and customize it
var customTheme = new Theme()
 .AddColorPalette("brand", new Dictionary<string, string>
 {
 { "50", "#eff6ff" },
 { "100", "#dbeafe" },
 { "200", "#bfdbfe" },
 { "300", "#93c5fd" },
 { "400", "#60a5fa" },
 { "500", "#3b82f6" },
 { "600", "#2563eb" },
 { "700", "#1d4ed8" },
 { "800", "#1e40af" },
 { "900", "#1e3a8a" },
 { "950", "#172554" }
 }.ToImmutableDictionary())
 .MapColorPalette("sky", "primary") // Map 'sky' palette to 'primary'
 .AddFontFamily("display", "'Inter', sans-serif");

var framework = new CssFramework(new CssFrameworkSettings
{
 Theme = customTheme
});

// Now you can use: bg-brand-500, text-primary-600, font-display

Component Classes (Apply)

You can create component classes by applying utility classes to selectors:

using System.Collections.Immutable;

var settings = new CssFrameworkSettings
{
 IncludePreflight = false,
 Applies = new Dictionary<string, string>
 {
 { "body", "font-sans text-gray-900" },
 { ".btn", "px-4 py-2 rounded-lg font-semibold" },
 { ".btn-primary", "bg-blue-500 text-white hover:bg-blue-600" },
 { ".card", "bg-white shadow-lg rounded-xl p-6" }
 }.ToImmutableDictionary()
};

var framework = new CssFramework(settings);
var css = framework.Process("btn btn-primary");

Merging Conflicting Classes

When you build reusable components, callers inevitably pass classes that conflict with a component's defaults. CssFramework.Merge resolves those conflicts the way tailwind-merge does — later classes win, conflicting earlier ones are dropped, surviving order is preserved:

var framework = new CssFramework();

framework.Merge("px-2 p-4 bg-red-500 hover:p-2 bg-blue-500");
// → "p-4 hover:p-2 bg-blue-500"

// The params overload joins lists, with later lists winning — ideal for caller overrides.
framework.Merge("px-4 py-2 bg-blue-500 text-white", userExtraClasses);

Unlike tailwind-merge's hand-maintained class-group config, MonorailCSS derives conflicts from what each class actually compiles to, so custom utilities participate automatically. Results are cached on the framework and safe for concurrent use. See the Merging Classes guide for the full behavior.

Advanced Features

Custom Variants

Create custom pseudo-classes or selector modifiers:

var settings = new CssFrameworkSettings
{
 CustomVariants = new List<CustomVariantDefinition>
 {
 new() { Name = "scrollbar", Selector = "&::-webkit-scrollbar" },
 new() { Name = "scrollbar-track", Selector = "&::-webkit-scrollbar-track" }
 }.ToImmutableList()
};

var framework = new CssFramework(settings);
// Use: scrollbar:w-2 scrollbar-track:bg-gray-100

Arbitrary Values

MonorailCSS supports arbitrary values in square brackets:

var framework = new CssFramework();
var css = framework.Process("bg-[#1da1f2] text-[14px] w-[500px]");

Preflight CSS

Control whether to include base/reset styles:

var framework = new CssFramework(new CssFrameworkSettings
{
 IncludePreflight = true // Default is true
});

Acknowledgments

  • Tailwind CSS — the utility-first design and the CSS output MonorailCSS aims to be compatible with.
  • TailwindMerge by Erik Zettersten — the inspiration for CssFramework.Merge, itself a .NET take on the original tailwind-merge by Dany Castillo.
Product Versions Compatible and additional computed target framework versions.
.NET net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MonorailCss.Discovery:

Package Downloads
Pennington.MonorailCss

MonorailCSS integration for Pennington providing utility-first CSS generation

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.5-alpha.0.168 162 6/13/2026
0.0.5-alpha.0.167 69 6/12/2026
0.0.5-alpha.0.166 57 6/12/2026
0.0.5-alpha.0.165 130 6/4/2026
0.0.5-alpha.0.164 54 6/4/2026
0.0.5-alpha.0.163 58 6/3/2026
0.0.5-alpha.0.162 75 5/29/2026
0.0.5-alpha.0.161 67 5/29/2026
0.0.5-alpha.0.159 53 5/28/2026
0.0.5-alpha.0.158 62 5/28/2026
0.0.5-alpha.0.149 52 5/24/2026
0.0.5-alpha.0.148 53 5/24/2026
0.0.5-alpha.0.147 56 5/23/2026
0.0.5-alpha.0.146 382 5/15/2026
0.0.5-alpha.0.143 81 5/12/2026
0.0.5-alpha.0.142 58 5/12/2026
0.0.5-alpha.0.141 54 5/12/2026
0.0.5-alpha.0.137 56 5/11/2026
0.0.5-alpha.0.134 62 5/11/2026
0.0.5-alpha.0.133 50 5/11/2026
Loading failed