MonorailCss 0.0.5-alpha.0.146

This is a prerelease version of MonorailCss.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MonorailCss --version 0.0.5-alpha.0.146
                    
NuGet\Install-Package MonorailCss -Version 0.0.5-alpha.0.146
                    
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" Version="0.0.5-alpha.0.146" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MonorailCss" Version="0.0.5-alpha.0.146" />
                    
Directory.Packages.props
<PackageReference Include="MonorailCss" />
                    
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 --version 0.0.5-alpha.0.146
                    
#r "nuget: MonorailCss, 0.0.5-alpha.0.146"
                    
#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@0.0.5-alpha.0.146
                    
#: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&version=0.0.5-alpha.0.146&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MonorailCss&version=0.0.5-alpha.0.146&prerelease
                    
Install as a Cake Tool

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.2 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");

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
});
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on MonorailCss:

Package Downloads
MyLittleContentEngine.MonorailCss

MonorailCSS integration for My Little Content Engine providing utility-first CSS framework support

Pennington.MonorailCss

MonorailCSS integration for Pennington providing utility-first CSS generation

MonorailCss.Discovery

Runtime CSS class discovery for MonorailCSS — scans loaded assembly IL to extract utility classes from .razor, .cs, and compiled NuGet packages without source generators or build tasks.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.5-alpha.0.162 61 5/29/2026
0.0.5-alpha.0.161 65 5/29/2026
0.0.5-alpha.0.159 51 5/28/2026
0.0.5-alpha.0.158 49 5/28/2026
0.0.5-alpha.0.149 55 5/24/2026
0.0.5-alpha.0.148 53 5/24/2026
0.0.5-alpha.0.147 57 5/23/2026
0.0.5-alpha.0.146 211 5/15/2026
0.0.5-alpha.0.143 80 5/12/2026
0.0.5-alpha.0.142 58 5/12/2026
0.0.5-alpha.0.141 60 5/12/2026
0.0.5-alpha.0.137 65 5/11/2026
0.0.5-alpha.0.134 55 5/11/2026
0.0.5-alpha.0.133 61 5/11/2026
0.0.5-alpha.0.131 64 5/11/2026
0.0.5-alpha.0.127 69 5/10/2026
0.0.5-alpha.0.126 57 5/10/2026
0.0.5-alpha.0.125 65 5/10/2026
0.0.5-alpha.0.123 68 5/10/2026
0.0.4 231 10/12/2025
Loading failed