Download the PHP
package lnear/marco without Composer
On this page you can find all versions of the php package
lnear/marco . It is possible to download/install
these versions without Composer . Possible dependencies are resolved
automatically.
Vendor lnear
Package marco
Short Description CSS Macro utility
License
MIT
FAQ
After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.
Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements. In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories.
In this case some credentials are needed to access such packages.
Please use the auth.json textarea to insert credentials, if a package is coming from a private repository.
You can look
here for more information.
Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
To use Composer is sometimes complicated. Especially for beginners.
Composer needs much resources. Sometimes they are not available on a simple webspace.
If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?
Informations about the package marco Marco - CSS Macro Library
This is a lightweight (and low level) CSS utilities library aimed at simplifying and standardizing common CSS patterns. It provides a utility function for generating CSS properties and values dynamically.
Installation
This library is implemented in both TypeScript and PHP. You can install the TypeScript version via npm:
and the PHP version via composer:
Usage
This will generate the following CSS string:
You can also use the generateCSS function to generate CSS strings for web components (or any other scoped style engine that supports :host) with multiple macros:
or the generate method of the Marco class in PHP:
Both will generate the following CSS string:
More docs coming soon...
Patterns
The below are the predefined patterns that can be used with the replace function. It is not an exhaustive list and intutive patterns are implemented as needed.
For example, only "saturate-(0, 50, 100, 150, 200)" are documented here, but any value can be used with the "saturate" pattern. (saturate-x where x is a number will be replaced with "filter: saturate({x / 100});")
View Patterns
#### `drop-shadow`
#### `drop-shadow-sm`
#### `drop-shadow-md`
#### `drop-shadow-lg`
#### `drop-shadow-xl`
#### `drop-shadow-xl2`
#### `drop-shadow-none`
#### `backdrop-hue-rotate-0`
#### `backdrop-hue-rotate-15`
#### `backdrop-hue-rotate-16`
#### `backdrop-hue-rotate-30`
#### `backdrop-hue-rotate-60`
#### `backdrop-hue-rotate-90`
#### `backdrop-hue-rotate-180`
#### `hue-rotate-0`
#### `hue-rotate-15`
#### `hue-rotate-30`
#### `hue-rotate-60`
#### `hue-rotate-90`
#### `hue-rotate-180`
#### `grayscale-0`
#### `grayscale`
#### `invert-0`
#### `invert`
#### `sepia-0`
#### `sepia`
#### `backdrop-grayscale-0`
#### `backdrop-grayscale`
#### `saturate-0`
#### `saturate-50`
#### `saturate-100`
#### `saturate-150`
#### `saturate-200`
#### `backdrop-blur`
#### `backdrop-blur-none`
#### `backdrop-blur-sm`
#### `backdrop-blur-md`
#### `backdrop-blur-lg`
#### `backdrop-blur-xl`
#### `backdrop-blur-xl2`
#### `backdrop-blur-xl3`
#### `blur`
#### `blur-none`
#### `blur-sm`
#### `blur-md`
#### `blur-lg`
#### `blur-xl`
#### `blur-xl2`
#### `blur-xl3`
#### `backdrop-brightness-0`
#### `backdrop-brightness-50`
#### `backdrop-brightness-75`
#### `backdrop-brightness-90`
#### `backdrop-brightness-95`
#### `backdrop-brightness-100`
#### `backdrop-brightness-105`
#### `backdrop-brightness-110`
#### `backdrop-brightness-125`
#### `backdrop-brightness-150`
#### `backdrop-brightness-200`
#### `brightness-0`
#### `brightness-50`
#### `brightness-75`
#### `brightness-90`
#### `brightness-95`
#### `brightness-100`
#### `brightness-105`
#### `brightness-110`
#### `brightness-125`
#### `brightness-150`
#### `brightness-200`
#### `contrast-0`
#### `contrast-50`
#### `contrast-75`
#### `contrast-100`
#### `contrast-125`
#### `contrast-150`
#### `contrast-200`
#### `backdrop-contrast-0`
#### `backdrop-contrast-50`
#### `backdrop-contrast-75`
#### `backdrop-contrast-100`
#### `backdrop-contrast-125`
#### `backdrop-contrast-150`
#### `backdrop-contrast-200`
#### `ease-linear`
#### `ease-in`
#### `ease-out`
#### `ease-in-out`
#### `timing-linear`
#### `timing-in`
#### `timing-out`
#### `timing-in-out`
#### `transition-colors`
#### `transition-opacity`
```css
transition-property: opacity;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;
```
#### `transition-all`
```css
transition-property: all;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;
```
#### `transition-shadow`
```css
transition-property: shadow;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;
```
#### `transition-none`
```css
transition-property: none;
```
#### `float-start`
```css
float: start;
```
#### `float-end`
```css
float: end;
```
#### `float-right`
```css
float: right;
```
#### `float-left`
```css
float: left;
```
#### `float-none`
```css
float: none;
```
#### `clear-start`
```css
clear: start;
```
#### `clear-end`
```css
clear: end;
```
#### `clear-right`
```css
clear: right;
```
#### `clear-left`
```css
clear: left;
```
#### `clear-both`
```css
clear: both;
```
#### `clear-none`
```css
clear: none;
```
#### `inline-block`
```css
display: inline-block;
```
#### `inline-flex`
```css
display: inline-flex;
```
#### `inline-table`
```css
display: inline-table;
```
#### `block`
```css
display: block;
```
#### `inline`
```css
display: inline;
```
#### `hidden`
```css
display: none;
```
#### `table`
```css
display: table;
```
#### `table-caption`
```css
display: table-caption;
```
#### `table-cell`
```css
display: table-cell;
```
#### `table-column`
```css
display: table-column;
```
#### `table-column-group`
```css
display: table-column-group;
```
#### `table-footer-group`
```css
display: table-footer-group;
```
#### `table-header-group`
```css
display: table-header-group;
```
#### `table-row-group`
```css
display: table-row-group;
```
#### `table-row`
```css
display: table-row;
```
#### `flow-root`
```css
display: flow-root;
```
#### `grid`
```css
display: grid;
```
#### `inline-grid`
```css
display: inline-grid;
```
#### `contents`
```css
display: contents;
```
#### `list-item`
```css
display: list-item;
```
#### `bg-inherit`
```css
background-color: inherit;
```
#### `bg-transparent`
```css
background-color: transparent;
```
#### `bg-auto`
```css
background-size: auto;
```
#### `bg-cover`
```css
background-size: cover;
```
#### `bg-contain`
```css
background-size: contain;
```
#### `bg-fixed`
```css
background-attachment: fixed;
```
#### `bg-local`
```css
background-attachment: local;
```
#### `bg-scroll`
```css
background-attachment: scroll;
```
#### `bg-center`
```css
background-position: center;
```
#### `bg-top`
```css
background-position: top;
```
#### `bg-right-top`
```css
background-position: right-top;
```
#### `bg-right`
```css
background-position: right;
```
#### `bg-right-bottom`
```css
background-position: right-bottom;
```
#### `bg-bottom`
```css
background-position: bottom;
```
#### `bg-left-bottom`
```css
background-position: left-bottom;
```
#### `bg-left`
```css
background-position: left;
```
#### `bg-left-top`
```css
background-position: left-top;
```
#### `bg-repeat`
```css
background-repeat: repeat;
```
#### `bg-no-repeat`
```css
background-repeat: no-repeat;
```
#### `bg-repeat-x`
```css
background-repeat: repeat-x;
```
#### `bg-repeat-y`
```css
background-repeat: repeat-y;
```
#### `bg-round`
```css
background-repeat: round;
```
#### `bg-space`
```css
background-repeat: space;
```
#### `bg-none`
```css
background-image: none;
```
#### `pointer-events-none`
```css
pointer-events: none;
```
#### `pointer-events-auto`
```css
pointer-events: auto;
```
#### `place-content-center`
```css
place-content: center;
```
#### `place-content-start`
```css
place-content: start;
```
#### `place-content-end`
```css
place-content: end;
```
#### `place-content-between`
```css
place-content: between;
```
#### `place-content-around`
```css
place-content: around;
```
#### `place-content-evenly`
```css
place-content: evenly;
```
#### `place-content-baseline`
```css
place-content: baseline;
```
#### `place-content-stretch`
```css
place-content: stretch;
```
#### `place-items-center`
```css
place-items: center;
```
#### `place-items-start`
```css
place-items: start;
```
#### `place-items-end`
```css
place-items: end;
```
#### `place-items-baseline`
```css
place-items: baseline;
```
#### `place-items-stretch`
```css
place-items: stretch;
```
#### `inset-auto`
```css
inset: auto;
```
#### `start-auto`
```css
inset-inline-start: auto;
```
#### `end-auto`
```css
inset-inline-end: auto;
```
#### `top-auto`
```css
top: auto;
```
#### `right-auto`
```css
right: auto;
```
#### `bottom-auto`
```css
bottom: auto;
```
#### `left-auto`
```css
left: auto;
```
#### `isolate`
```css
isolation: isolate;
```
#### `isolation-auto`
```css
isolation: auto;
```
#### `z-auto`
```css
z-index: auto;
```
#### `order-first`
```css
order: calc(-infinity);
```
#### `order-last`
```css
order: calc(infinity);
```
#### `order-none`
```css
order: 0;
```
#### `col-auto`
```css
grid-column: auto;
```
#### `col-span-full`
```css
grid-column: 1 / -1;
```
#### `col-start-auto`
```css
grid-column-start: auto;
```
#### `col-end-auto`
```css
grid-column-end: auto;
```
#### `row-auto`
```css
grid-row: auto;
```
#### `row-span-full`
```css
grid-row: 1 / -1;
```
#### `row-start-auto`
```css
grid-row-start: auto;
```
#### `row-end-auto`
```css
grid-row-end: auto;
```
#### `box-border`
```css
box-sizing: border-box;
```
#### `box-content`
```css
box-sizing: content-box;
```
#### `aspect-auto`
```css
aspect-ratio: auto;
```
#### `aspect-square`
```css
aspect-ratio: 1 / 1;
```
#### `aspect-video`
```css
aspect-ratio: 16 / 9;
```
#### `flex-auto`
```css
flex: auto;
```
#### `flex-initial`
```css
flex: 0 auto;
```
#### `flex-none`
```css
flex: none;
```
#### `basis-auto`
```css
flex-basis: auto;
```
#### `basis-full`
```css
flex-basis: 100%;
```
#### `table-auto`
```css
table-layout: auto;
```
#### `table-fixed`
```css
table-layout: fixed;
```
#### `caption-top`
```css
caption-side: top;
```
#### `caption-bottom`
```css
caption-side: bottom;
```
#### `border-collapse`
```css
border-collapse: collapse;
```
#### `border-separate`
```css
border-collapse: separate;
```
#### `origin-center`
```css
transform-origin: center;
```
#### `origin-top`
```css
transform-origin: top;
```
#### `origin-top-right`
```css
transform-origin: top right;
```
#### `origin-right`
```css
transform-origin: right;
```
#### `origin-bottom-right`
```css
transform-origin: bottom right;
```
#### `origin-bottom`
```css
transform-origin: bottom;
```
#### `origin-bottom-left`
```css
transform-origin: bottom left;
```
#### `origin-left`
```css
transform-origin: left;
```
#### `origin-top-left`
```css
transform-origin: top left;
```
#### `perspective-origin-center`
```css
perspective-origin: center;
```
#### `perspective-origin-top`
```css
perspective-origin: top;
```
#### `perspective-origin-top-right`
```css
perspective-origin: top right;
```
#### `perspective-origin-right`
```css
perspective-origin: right;
```
#### `perspective-origin-bottom-right`
```css
perspective-origin: bottom right;
```
#### `perspective-origin-bottom`
```css
perspective-origin: bottom;
```
#### `perspective-origin-bottom-left`
```css
perspective-origin: bottom left;
```
#### `perspective-origin-left`
```css
perspective-origin: left;
```
#### `perspective-origin-top-left`
```css
perspective-origin: top left;
```
#### `perspective-none`
```css
perspective: none;
```
#### `translate-none`
```css
translate: none;
```
#### `transform-none`
```css
transform: none;
```
#### `transform-flat`
```css
transform-style: flat;
```
#### `transform-3d`
```css
transform-style: preserve-3d;
```
#### `transform-content`
```css
transform-box: content-box;
```
#### `transform-border`
```css
transform-box: border-box;
```
#### `transform-fill`
```css
transform-box: fill-box;
```
#### `transform-stroke`
```css
transform-box: stroke-box;
```
#### `transform-view`
```css
transform-box: view-box;
```
#### `backface-visible`
```css
backface-visibility: visible;
```
#### `backface-hidden`
```css
backface-visibility: hidden;
```
#### `resize-none`
```css
resize: none;
```
#### `resize-both`
```css
resize: both;
```
#### `resize-x`
```css
resize: horizontal;
```
#### `resize-y`
```css
resize: vertical;
```
#### `snap-none`
```css
scroll-snap-type: none;
```
#### `snap-align-none`
```css
scroll-snap-align: none;
```
#### `snap-start`
```css
scroll-snap-align: start;
```
#### `snap-end`
```css
scroll-snap-align: end;
```
#### `snap-center`
```css
scroll-snap-align: center;
```
#### `snap-normal`
```css
scroll-snap-stop: normal;
```
#### `snap-always`
```css
scroll-snap-stop: always;
```
#### `list-inside`
```css
list-style-position: inside;
```
#### `list-outside`
```css
list-style-position: outside;
```
#### `list-none`
```css
list-style-type: none;
```
#### `list-disc`
```css
list-style-type: disc;
```
#### `list-decimal`
```css
list-style-type: decimal;
```
#### `list-image-none`
```css
list-style-image: none;
```
#### `appearance-none`
```css
appearance: none;
```
#### `appearance-auto`
```css
appearance: auto;
```
#### `columns-auto`
```css
columns: auto;
```
#### `grid-flow-row`
```css
grid-auto-flow: row;
```
#### `grid-flow-col`
```css
grid-auto-flow: column;
```
#### `grid-flow-dense`
```css
grid-auto-flow: dense;
```
#### `grid-flow-row-dense`
```css
grid-auto-flow: row dense;
```
#### `grid-flow-col-dense`
```css
grid-auto-flow: column dense;
```
#### `auto-cols-auto`
```css
grid-auto-columns: auto;
```
#### `auto-cols-min`
```css
grid-auto-columns: min-content;
```
#### `auto-cols-max`
```css
grid-auto-columns: max-content;
```
#### `auto-cols-fr`
```css
grid-auto-columns: minmax(0, 1fr);
```
#### `auto-rows-auto`
```css
grid-auto-rows: auto;
```
#### `auto-rows-min`
```css
grid-auto-rows: min-content;
```
#### `auto-rows-max`
```css
grid-auto-rows: max-content;
```
#### `auto-rows-fr`
```css
grid-auto-rows: minmax(0, 1fr);
```
#### `grid-cols-none`
```css
grid-template-columns: none;
```
#### `grid-cols-subgrid`
```css
grid-template-columns: subgrid;
```
#### `grid-rows-none`
```css
grid-template-rows: none;
```
#### `grid-rows-subgrid`
```css
grid-template-rows: subgrid;
```
#### `flex-row`
```css
flex-direction: row;
```
#### `flex-row-reverse`
```css
flex-direction: row-reverse;
```
#### `flex-col`
```css
flex-direction: column;
```
#### `flex-col-reverse`
```css
flex-direction: column-reverse;
```
#### `flex-wrap`
```css
flex-wrap: wrap;
```
#### `flex-nowrap`
```css
flex-wrap: nowrap;
```
#### `flex-wrap-reverse`
```css
flex-wrap: wrap-reverse;
```
#### `content-normal`
```css
align-content: normal;
```
#### `content-center`
```css
align-content: center;
```
#### `content-start`
```css
align-content: flex-start;
```
#### `content-end`
```css
align-content: flex-end;
```
#### `content-between`
```css
align-content: space-between;
```
#### `content-around`
```css
align-content: space-around;
```
#### `content-evenly`
```css
align-content: space-evenly;
```
#### `content-baseline`
```css
align-content: baseline;
```
#### `content-stretch`
```css
align-content: stretch;
```
#### `items-center`
```css
align-items: center;
```
#### `items-start`
```css
align-items: flex-start;
```
#### `items-end`
```css
align-items: flex-end;
```
#### `items-baseline`
```css
align-items: baseline;
```
#### `items-stretch`
```css
align-items: stretch;
```
#### `justify-normal`
```css
justify-content: normal;
```
#### `justify-center`
```css
justify-content: center;
```
#### `justify-start`
```css
justify-content: flex-start;
```
#### `justify-end`
```css
justify-content: flex-end;
```
#### `justify-between`
```css
justify-content: space-between;
```
#### `justify-around`
```css
justify-content: space-around;
```
#### `justify-evenly`
```css
justify-content: space-evenly;
```
#### `justify-baseline`
```css
justify-content: baseline;
```
#### `justify-stretch`
```css
justify-content: stretch;
```
#### `justify-items-normal`
```css
justify-items: normal;
```
#### `justify-items-center`
```css
justify-items: center;
```
#### `justify-items-start`
```css
justify-items: start;
```
#### `justify-items-end`
```css
justify-items: end;
```
#### `justify-items-stretch`
```css
justify-items: stretch;
```
#### `place-self-auto`
```css
place-self: auto;
```
#### `place-self-start`
```css
place-self: start;
```
#### `place-self-end`
```css
place-self: end;
```
#### `place-self-center`
```css
place-self: center;
```
#### `place-self-stretch`
```css
place-self: stretch;
```
#### `self-auto`
```css
align-self: auto;
```
#### `self-start`
```css
align-self: flex-start;
```
#### `self-end`
```css
align-self: flex-end;
```
#### `self-center`
```css
align-self: center;
```
#### `self-stretch`
```css
align-self: stretch;
```
#### `self-baseline`
```css
align-self: baseline;
```
#### `justify-self-auto`
```css
justify-self: auto;
```
#### `justify-self-start`
```css
justify-self: flex-start;
```
#### `justify-self-end`
```css
justify-self: flex-end;
```
#### `justify-self-center`
```css
justify-self: center;
```
#### `justify-self-stretch`
```css
justify-self: stretch;
```
#### `scroll-auto`
```css
scroll-behavior: auto;
```
#### `scroll-smooth`
```css
scroll-behavior: smooth;
```
#### `text-ellipsis`
```css
text-overflow: ellipsis;
```
#### `text-clip`
```css
text-overflow: clip;
```
#### `whitespace-normal`
```css
white-space: normal;
```
#### `whitespace-nowrap`
```css
white-space: nowrap;
```
#### `whitespace-pre`
```css
white-space: pre;
```
#### `whitespace-pre-line`
```css
white-space: pre-line;
```
#### `whitespace-pre-wrap`
```css
white-space: pre-wrap;
```
#### `whitespace-break-spaces`
```css
white-space: break-spaces;
```
#### `text-wrap`
```css
text-wrap: wrap;
```
#### `text-nowrap`
```css
text-wrap: nowrap;
```
#### `text-balance`
```css
text-wrap: balance;
```
#### `text-pretty`
```css
text-wrap: pretty;
```
#### `break-words`
```css
overflow-wrap: break-word;
```
#### `break-all`
```css
word-break: break-all;
```
#### `break-keep`
```css
word-break: break-keep;
```
#### `via-none`
```css
--tw-gradient-via-stops: initial;
```
#### `bg-clip-text`
```css
background-clip: text;
```
#### `bg-clip-border`
```css
background-clip: border-box;
```
#### `bg-clip-padding`
```css
background-clip: padding-box;
```
#### `bg-clip-content`
```css
background-clip: content-box;
```
#### `bg-origin-border`
```css
background-origin: border-box;
```
#### `bg-origin-padding`
```css
background-origin: padding-box;
```
#### `bg-origin-content`
```css
background-origin: content-box;
```
#### `mix-blend-plus-darker`
```css
mix-blend-mode: plus-darker;
```
#### `mix-blend-plus-lighter`
```css
mix-blend-mode: plus-lighter;
```
#### `stroke-none`
```css
stroke: none;
```
#### `object-contain`
```css
object-fit: contain;
```
#### `object-cover`
```css
object-fit: cover;
```
#### `object-fill`
```css
object-fit: fill;
```
#### `object-none`
```css
object-fit: none;
```
#### `object-scale-down`
```css
object-fit: scale-down;
```
#### `object-bottom`
```css
object-position: bottom;
```
#### `object-center`
```css
object-position: center;
```
#### `object-left`
```css
object-position: left;
```
#### `object-left-bottom`
```css
object-position: left bottom;
```
#### `object-left-top`
```css
object-position: left top;
```
#### `object-right`
```css
object-position: right;
```
#### `object-right-bottom`
```css
object-position: right bottom;
```
#### `object-right-top`
```css
object-position: right top;
```
#### `object-top`
```css
object-position: top;
```
#### `text-left`
```css
text-align: left;
```
#### `text-center`
```css
text-align: center;
```
#### `text-right`
```css
text-align: right;
```
#### `text-justify`
```css
text-align: justify;
```
#### `text-start`
```css
text-align: start;
```
#### `text-end`
```css
text-align: end;
```
#### `align-baseline`
```css
vertical-align: baseline;
```
#### `align-top`
```css
vertical-align: top;
```
#### `align-middle`
```css
vertical-align: middle;
```
#### `align-bottom`
```css
vertical-align: bottom;
```
#### `align-text-top`
```css
vertical-align: text-top;
```
#### `align-text-bottom`
```css
vertical-align: text-bottom;
```
#### `align-sub`
```css
vertical-align: sub;
```
#### `align-super`
```css
vertical-align: super;
```
#### `uppercase`
```css
text-transform: uppercase;
```
#### `lowercase`
```css
text-transform: lowercase;
```
#### `capitalize`
```css
text-transform: capitalize;
```
#### `normal-case`
```css
text-transform: none;
```
#### `italic`
```css
font-style: italic;
```
#### `not-italic`
```css
font-style: normal;
```
#### `underline`
```css
text-decoration-line: underline;
```
#### `overline`
```css
text-decoration-line: overline;
```
#### `line-through`
```css
text-decoration-line: line-through;
```
#### `no-underline`
```css
text-decoration-line: none;
```
#### `font-stretch-normal`
```css
font-stretch: normal;
```
#### `font-stretch-ultra-condensed`
```css
font-stretch: ultra-condensed;
```
#### `font-stretch-extra-condensed`
```css
font-stretch: extra-condensed;
```
#### `font-stretch-condensed`
```css
font-stretch: condensed;
```
#### `font-stretch-semi-condensed`
```css
font-stretch: semi-condensed;
```
#### `font-stretch-semi-expanded`
```css
font-stretch: semi-expanded;
```
#### `font-stretch-expanded`
```css
font-stretch: expanded;
```
#### `font-stretch-extra-expanded`
```css
font-stretch: extra-expanded;
```
#### `font-stretch-ultra-expanded`
```css
font-stretch: ultra-expanded;
```
#### `decoration-solid`
```css
text-decoration-style: solid;
```
#### `decoration-double`
```css
text-decoration-style: double;
```
#### `decoration-dotted`
```css
text-decoration-style: dotted;
```
#### `decoration-dashed`
```css
text-decoration-style: dashed;
```
#### `decoration-wavy`
```css
text-decoration-style: wavy;
```
#### `decoration-auto`
```css
text-decoration-thickness: auto;
```
#### `decoration-from-font`
```css
text-decoration-thickness: from-font;
```
#### `animate-none`
```css
animation: none;
```
#### `will-change-auto`
```css
will-change: auto;
```
#### `will-change-scroll`
```css
will-change: scroll-position;
```
#### `will-change-contents`
```css
will-change: contents;
```
#### `will-change-transform`
```css
will-change: transform;
```
#### `contain-none`
```css
contain: none;
```
#### `contain-content`
```css
contain: content;
```
#### `contain-strict`
```css
contain: strict;
```
#### `forced-color-adjust-none`
```css
forced-color-adjust: none;
```
#### `forced-color-adjust-auto`
```css
forced-color-adjust: auto;
```
#### `normal-nums`
```css
font-variant-numeric: normal;
```
#### `underline-offset-auto`
```css
text-underline-offset: auto;
```
#### `touch-none`
```css
touch-action: none;
```
#### `touch-auto`
```css
touch-action: auto;
```
#### `touch-pan-x`
```css
touch-action: pan-x;
```
#### `cursor-auto`
```css
cursor: auto;
```
#### `cursor-default`
```css
cursor: default;
```
#### `select-none`
```css
-webkit-user-select: none;user-select: none;
```
#### `select-text`
```css
-webkit-user-select: text;user-select: text;
```
#### `rotate-0`
```css
rotate: 0deg;
```
#### `rotate-90`
```css
rotate: 90deg;
```
#### `border-inherit`
```css
border-color: inherit;
```
#### `border-current`
```css
border-color: currentColor;
```
#### `border-transparent`
```css
border-color: transparent;
```
#### `border-x-black`
```css
border-left-color: rgb(0 0 0); border-right-color: rgb(0 0 0);
```
#### `border-black`
```css
border-color: rgb(0 0 0);
```
#### `border-white`
```css
border-color: rgb(255 255 255);
```
#### `border-slate-50`
```css
border-color: rgb(248 250 252);
```
#### `border-slate-100`
```css
border-color: rgb(241 245 249);
```
#### `border-slate-200`
```css
border-color: rgb(226 232 240);
```
#### `border-slate-300`
```css
border-color: rgb(203 213 225);
```
#### `border-slate-400`
```css
border-color: rgb(148 163 184);
```
#### `border-slate-500`
```css
border-color: rgb(100 116 139);
```
#### `border-slate-600`
```css
border-color: rgb(71 85 105);
```
#### `border-slate-700`
```css
border-color: rgb(51 65 85);
```
#### `border-slate-800`
```css
border-color: rgb(30 41 59);
```
#### `border-slate-900`
```css
border-color: rgb(15 23 42);
```
#### `border-slate-950`
```css
border-color: rgb(2 6 23);
```
#### `border-gray-50`
```css
border-color: rgb(249 250 251);
```
#### `border-gray-100`
```css
border-color: rgb(243 244 246);
```
#### `border-gray-200`
```css
border-color: rgb(229 231 235);
```
#### `border-gray-300`
```css
border-color: rgb(209 213 219);
```
#### `border-gray-400`
```css
border-color: rgb(156 163 175);
```
#### `border-gray-500`
```css
border-color: rgb(107 114 128);
```
#### `border-gray-600`
```css
border-color: rgb(75 85 99);
```
#### `border-gray-700`
```css
border-color: rgb(55 65 81);
```
#### `border-gray-800`
```css
border-color: rgb(31 41 55);
```
#### `border-gray-900`
```css
border-color: rgb(17 24 39);
```
#### `border-gray-950`
```css
border-color: rgb(3 7 18);
```
#### `border-zinc-50`
```css
border-color: rgb(250 250 250);
```
#### `border-zinc-100`
```css
border-color: rgb(244 244 245);
```
#### `border-zinc-200`
```css
border-color: rgb(228 228 231);
```
#### `border-zinc-300`
```css
border-color: rgb(212 212 216);
```
#### `border-zinc-400`
```css
border-color: rgb(161 161 170);
```
#### `border-zinc-500`
```css
border-color: rgb(113 113 122);
```
#### `border-zinc-600`
```css
border-color: rgb(82 82 91);
```
#### `border-zinc-700`
```css
border-color: rgb(63 63 70);
```
#### `border-zinc-800`
```css
border-color: rgb(39 39 42);
```
#### `border-zinc-900`
```css
border-color: rgb(24 24 27);
```
#### `border-zinc-950`
```css
border-color: rgb(9 9 11);
```
#### `border-neutral-50`
```css
border-color: rgb(250 250 250);
```
#### `border-neutral-100`
```css
border-color: rgb(245 245 245);
```
#### `border-neutral-200`
```css
border-color: rgb(229 229 229);
```
#### `border-neutral-300`
```css
border-color: rgb(212 212 212);
```
#### `border-neutral-400`
```css
border-color: rgb(163 163 163);
```
#### `border-neutral-500`
```css
border-color: rgb(115 115 115);
```
#### `border-neutral-600`
```css
border-color: rgb(82 82 82);
```
#### `border-neutral-700`
```css
border-color: rgb(64 64 64);
```
#### `border-neutral-800`
```css
border-color: rgb(38 38 38);
```
#### `border-neutral-900`
```css
border-color: rgb(23 23 23);
```
#### `border-neutral-950`
```css
border-color: rgb(10 10 10);
```
#### `border-stone-50`
```css
border-color: rgb(250 250 249);
```
#### `border-stone-100`
```css
border-color: rgb(245 245 244);
```
#### `border-stone-200`
```css
border-color: rgb(231 229 228);
```
#### `border-stone-300`
```css
border-color: rgb(214 211 209);
```
#### `border-stone-400`
```css
border-color: rgb(168 162 158);
```
#### `border-stone-500`
```css
border-color: rgb(120 113 108);
```
#### `border-stone-600`
```css
border-color: rgb(87 83 78);
```
#### `border-stone-700`
```css
border-color: rgb(68 64 60);
```
#### `border-stone-800`
```css
border-color: rgb(41 37 36);
```
#### `border-stone-900`
```css
border-color: rgb(28 25 23);
```
#### `border-stone-950`
```css
border-color: rgb(12 10 9);
```
#### `border-red-50`
```css
border-color: rgb(254 242 242);
```
#### `border-red-100`
```css
border-color: rgb(254 226 226);
```
#### `border-red-200`
```css
border-color: rgb(254 202 202);
```
#### `border-red-300`
```css
border-color: rgb(252 165 165);
```
#### `border-red-400`
```css
border-color: rgb(248 113 113);
```
#### `border-red-500`
```css
border-color: rgb(239 68 68);
```
#### `border-red-600`
```css
border-color: rgb(220 38 38);
```
#### `border-red-700`
```css
border-color: rgb(185 28 28);
```
#### `border-red-800`
```css
border-color: rgb(153 27 27);
```
#### `border-red-900`
```css
border-color: rgb(127 29 29);
```
#### `border-red-950`
```css
border-color: rgb(69 10 10);
```
#### `border-orange-50`
```css
border-color: rgb(255 247 237);
```
#### `border-orange-100`
```css
border-color: rgb(255 237 213);
```
#### `border-orange-200`
```css
border-color: rgb(254 215 170);
```
#### `border-orange-300`
```css
border-color: rgb(253 186 116);
```
#### `border-orange-400`
```css
border-color: rgb(251 146 60);
```
#### `border-orange-500`
```css
border-color: rgb(249 115 22);
```
#### `border-orange-600`
```css
border-color: rgb(234 88 12);
```
#### `border-orange-700`
```css
border-color: rgb(194 65 12);
```
#### `border-orange-800`
```css
border-color: rgb(154 52 18);
```
#### `border-orange-900`
```css
border-color: rgb(124 45 18);
```
#### `border-orange-950`
```css
border-color: rgb(67 20 7);
```
#### `border-amber-50`
```css
border-color: rgb(255 251 235);
```
#### `border-amber-100`
```css
border-color: rgb(254 243 199);
```
#### `border-amber-200`
```css
border-color: rgb(253 230 138);
```
#### `border-amber-300`
```css
border-color: rgb(252 211 77);
```
#### `border-amber-400`
```css
border-color: rgb(251 191 36);
```
#### `border-amber-500`
```css
border-color: rgb(245 158 11);
```
#### `border-amber-600`
```css
border-color: rgb(217 119 6);
```
#### `border-amber-700`
```css
border-color: rgb(180 83 9);
```
#### `border-amber-800`
```css
border-color: rgb(146 64 14);
```
#### `border-amber-900`
```css
border-color: rgb(120 53 15);
```
#### `border-amber-950`
```css
border-color: rgb(69 26 3);
```
#### `border-yellow-50`
```css
border-color: rgb(254 252 232);
```
#### `border-yellow-100`
```css
border-color: rgb(254 249 195);
```
#### `border-yellow-200`
```css
border-color: rgb(254 240 138);
```
#### `border-yellow-300`
```css
border-color: rgb(253 224 71);
```
#### `border-yellow-400`
```css
border-color: rgb(250 204 21);
```
#### `border-yellow-500`
```css
border-color: rgb(234 179 8);
```
#### `border-yellow-600`
```css
border-color: rgb(202 138 4);
```
#### `border-yellow-700`
```css
border-color: rgb(161 98 7);
```
#### `border-yellow-800`
```css
border-color: rgb(133 77 14);
```
#### `border-yellow-900`
```css
border-color: rgb(113 63 18);
```
#### `border-yellow-950`
```css
border-color: rgb(66 32 6);
```
#### `border-lime-50`
```css
border-color: rgb(247 254 231);
```
#### `border-lime-100`
```css
border-color: rgb(236 252 203);
```
#### `border-lime-200`
```css
border-color: rgb(217 249 157);
```
#### `border-lime-300`
```css
border-color: rgb(190 242 100);
```
#### `border-lime-400`
```css
border-color: rgb(163 230 53);
```
#### `border-lime-500`
```css
border-color: rgb(132 204 22);
```
#### `border-lime-600`
```css
border-color: rgb(101 163 13);
```
#### `border-lime-700`
```css
border-color: rgb(77 124 15);
```
#### `border-lime-800`
```css
border-color: rgb(63 98 18);
```
#### `border-lime-900`
```css
border-color: rgb(54 83 20);
```
#### `border-lime-950`
```css
border-color: rgb(26 46 5);
```
#### `border-green-50`
```css
border-color: rgb(240 253 244);
```
#### `border-green-100`
```css
border-color: rgb(220 252 231);
```
#### `border-green-200`
```css
border-color: rgb(187 247 208);
```
#### `border-green-300`
```css
border-color: rgb(134 239 172);
```
#### `border-green-400`
```css
border-color: rgb(74 222 128);
```
#### `border-green-500`
```css
border-color: rgb(34 197 94);
```
#### `border-green-600`
```css
border-color: rgb(22 163 74);
```
#### `border-green-700`
```css
border-color: rgb(21 128 61);
```
#### `border-green-800`
```css
border-color: rgb(22 101 52);
```
#### `border-green-900`
```css
border-color: rgb(20 83 45);
```
#### `border-green-950`
```css
border-color: rgb(5 46 22);
```
#### `border-emerald-50`
```css
border-color: rgb(236 253 245);
```
#### `border-emerald-100`
```css
border-color: rgb(209 250 229);
```
#### `border-emerald-200`
```css
border-color: rgb(167 243 208);
```
#### `border-emerald-300`
```css
border-color: rgb(110 231 183);
```
#### `border-emerald-400`
```css
border-color: rgb(52 211 153);
```
#### `border-emerald-500`
```css
border-color: rgb(16 185 129);
```
#### `border-emerald-600`
```css
border-color: rgb(5 150 105);
```
#### `border-emerald-700`
```css
border-color: rgb(4 120 87);
```
#### `border-emerald-800`
```css
border-color: rgb(6 95 70);
```
#### `border-emerald-900`
```css
border-color: rgb(6 78 59);
```
#### `border-emerald-950`
```css
border-color: rgb(2 44 34);
```
#### `border-teal-50`
```css
border-color: rgb(240 253 250);
```
#### `border-teal-100`
```css
border-color: rgb(204 251 241);
```
#### `border-teal-200`
```css
border-color: rgb(153 246 228);
```
#### `border-teal-300`
```css
border-color: rgb(94 234 212);
```
#### `border-teal-400`
```css
border-color: rgb(45 212 191);
```
#### `border-teal-500`
```css
border-color: rgb(20 184 166);
```
#### `border-teal-600`
```css
border-color: rgb(13 148 136);
```
#### `border-teal-700`
```css
border-color: rgb(15 118 110);
```
#### `border-teal-800`
```css
border-color: rgb(17 94 89);
```
#### `border-teal-900`
```css
border-color: rgb(19 78 74);
```
#### `border-teal-950`
```css
border-color: rgb(4 47 46);
```
#### `border-cyan-50`
```css
border-color: rgb(236 254 255);
```
#### `border-cyan-100`
```css
border-color: rgb(207 250 254);
```
#### `border-cyan-200`
```css
border-color: rgb(165 243 252);
```
#### `border-cyan-300`
```css
border-color: rgb(103 232 249);
```
#### `border-cyan-400`
```css
border-color: rgb(34 211 238);
```
#### `border-cyan-500`
```css
border-color: rgb(6 182 212);
```
#### `border-cyan-600`
```css
border-color: rgb(8 145 178);
```
#### `border-cyan-700`
```css
border-color: rgb(14 116 144);
```
#### `border-cyan-800`
```css
border-color: rgb(21 94 117);
```
#### `border-cyan-900`
```css
border-color: rgb(22 78 99);
```
#### `border-cyan-950`
```css
border-color: rgb(8 51 68);
```
#### `border-sky-50`
```css
border-color: rgb(240 249 255);
```
#### `border-sky-100`
```css
border-color: rgb(224 242 254);
```
#### `border-sky-200`
```css
border-color: rgb(186 230 253);
```
#### `border-sky-300`
```css
border-color: rgb(125 211 252);
```
#### `border-sky-400`
```css
border-color: rgb(56 189 248);
```
#### `border-sky-500`
```css
border-color: rgb(14 165 233);
```
#### `border-sky-600`
```css
border-color: rgb(2 132 199);
```
#### `border-sky-700`
```css
border-color: rgb(3 105 161);
```
#### `border-sky-800`
```css
border-color: rgb(7 89 133);
```
#### `border-sky-900`
```css
border-color: rgb(12 74 110);
```
#### `border-sky-950`
```css
border-color: rgb(8 47 73);
```
#### `border-blue-50`
```css
border-color: rgb(239 246 255);
```
#### `border-blue-100`
```css
border-color: rgb(219 234 254);
```
#### `border-blue-200`
```css
border-color: rgb(191 219 254);
```
#### `border-blue-300`
```css
border-color: rgb(147 197 253);
```
#### `border-blue-400`
```css
border-color: rgb(96 165 250);
```
#### `border-blue-500`
```css
border-color: rgb(59 130 246);
```
#### `border-blue-600`
```css
border-color: rgb(37 99 235);
```
#### `border-blue-700`
```css
border-color: rgb(29 78 216);
```
#### `border-blue-800`
```css
border-color: rgb(30 64 175);
```
#### `border-blue-900`
```css
border-color: rgb(30 58 138);
```
#### `border-blue-950`
```css
border-color: rgb(23 37 84);
```
#### `border-indigo-50`
```css
border-color: rgb(238 242 255);
```
#### `border-indigo-100`
```css
border-color: rgb(224 231 255);
```
#### `border-indigo-200`
```css
border-color: rgb(199 210 254);
```
#### `border-indigo-300`
```css
border-color: rgb(165 180 252);
```
#### `border-indigo-400`
```css
border-color: rgb(129 140 248);
```
#### `border-indigo-500`
```css
border-color: rgb(99 102 241);
```
#### `border-indigo-600`
```css
border-color: rgb(79 70 229);
```
#### `border-indigo-700`
```css
border-color: rgb(67 56 202);
```
#### `border-indigo-800`
```css
border-color: rgb(55 48 163);
```
#### `border-indigo-900`
```css
border-color: rgb(49 46 129);
```
#### `border-indigo-950`
```css
border-color: rgb(30 27 75);
```
#### `border-violet-50`
```css
border-color: rgb(245 243 255);
```
#### `border-violet-100`
```css
border-color: rgb(237 233 254);
```
#### `border-violet-200`
```css
border-color: rgb(221 214 254);
```
#### `border-violet-300`
```css
border-color: rgb(196 181 253);
```
#### `border-violet-400`
```css
border-color: rgb(167 139 250);
```
#### `border-violet-500`
```css
border-color: rgb(139 92 246);
```
#### `border-violet-600`
```css
border-color: rgb(124 58 237);
```
#### `border-violet-700`
```css
border-color: rgb(109 40 217);
```
#### `border-violet-800`
```css
border-color: rgb(91 33 182);
```
#### `border-violet-900`
```css
border-color: rgb(76 29 149);
```
#### `border-violet-950`
```css
border-color: rgb(46 16 101);
```
#### `border-purple-50`
```css
border-color: rgb(250 245 255);
```
#### `border-purple-100`
```css
border-color: rgb(243 232 255);
```
#### `border-purple-200`
```css
border-color: rgb(233 213 255);
```
#### `border-purple-300`
```css
border-color: rgb(216 180 254);
```
#### `border-purple-400`
```css
border-color: rgb(192 132 252);
```
#### `border-purple-500`
```css
border-color: rgb(168 85 247);
```
#### `border-purple-600`
```css
border-color: rgb(147 51 234);
```
#### `border-purple-700`
```css
border-color: rgb(126 34 206);
```
#### `border-purple-800`
```css
border-color: rgb(107 33 168);
```
#### `border-purple-900`
```css
border-color: rgb(88 28 135);
```
#### `border-purple-950`
```css
border-color: rgb(59 7 100);
```
#### `border-fuchsia-50`
```css
border-color: rgb(253 244 255);
```
#### `border-fuchsia-100`
```css
border-color: rgb(250 232 255);
```
#### `border-fuchsia-200`
```css
border-color: rgb(245 208 254);
```
#### `border-fuchsia-300`
```css
border-color: rgb(240 171 252);
```
#### `border-fuchsia-400`
```css
border-color: rgb(232 121 249);
```
#### `border-fuchsia-500`
```css
border-color: rgb(217 70 239);
```
#### `border-fuchsia-600`
```css
border-color: rgb(192 38 211);
```
#### `border-fuchsia-700`
```css
border-color: rgb(162 28 175);
```
#### `border-fuchsia-800`
```css
border-color: rgb(134 25 143);
```
#### `border-fuchsia-900`
```css
border-color: rgb(112 26 117);
```
#### `border-fuchsia-950`
```css
border-color: rgb(74 4 78);
```
#### `border-pink-50`
```css
border-color: rgb(253 242 248);
```
#### `border-pink-100`
```css
border-color: rgb(252 231 243);
```
#### `border-pink-200`
```css
border-color: rgb(251 207 232);
```
#### `border-pink-300`
```css
border-color: rgb(249 168 212);
```
#### `border-pink-400`
```css
border-color: rgb(244 114 182);
```
#### `border-pink-500`
```css
border-color: rgb(236 72 153);
```
#### `border-pink-600`
```css
border-color: rgb(219 39 119);
```
#### `border-pink-700`
```css
border-color: rgb(190 24 93);
```
#### `border-pink-800`
```css
border-color: rgb(157 23 77);
```
#### `border-pink-900`
```css
border-color: rgb(131 24 67);
```
#### `border-pink-950`
```css
border-color: rgb(80 7 36);
```
#### `border-rose-50`
```css
border-color: rgb(255 241 242);
```
#### `border-rose-100`
```css
border-color: rgb(255 228 230);
```
#### `border-rose-200`
```css
border-color: rgb(254 205 211);
```
#### `border-rose-300`
```css
border-color: rgb(253 164 175);
```
#### `border-rose-400`
```css
border-color: rgb(251 113 133);
```
#### `border-rose-500`
```css
border-color: rgb(244 63 94);
```
#### `border-rose-600`
```css
border-color: rgb(225 29 72);
```
#### `border-rose-700`
```css
border-color: rgb(190 18 60);
```
#### `border-rose-800`
```css
border-color: rgb(159 18 57);
```
#### `border-rose-900`
```css
border-color: rgb(136 19 55);
```
#### `border-rose-950`
```css
border-color: rgb(76 5 25);
```
#### `w-0`
```css
width: 0px;
```
#### `w-px`
```css
width: 1px;
```
#### `w-0.5`
```css
width: 0.125rem;
```
#### `w-1`
```css
width: 0.25rem;
```
#### `w-1.5`
```css
width: 0.375rem;
```
#### `w-2`
```css
width: 0.5rem;
```
#### `w-2.5`
```css
width: 0.625rem;
```
#### `w-3`
```css
width: 0.75rem;
```
#### `w-3.5`
```css
width: 0.875rem;
```
#### `w-4`
```css
width: 1rem;
```
#### `w-5`
```css
width: 1.25rem;
```
#### `w-6`
```css
width: 1.5rem;
```
#### `w-7`
```css
width: 1.75rem;
```
#### `w-8`
```css
width: 2rem;
```
#### `w-9`
```css
width: 2.25rem;
```
#### `w-10`
```css
width: 2.5rem;
```
#### `w-11`
```css
width: 2.75rem;
```
#### `w-12`
```css
width: 3rem;
```
#### `w-14`
```css
width: 3.5rem;
```
#### `w-16`
```css
width: 4rem;
```
#### `w-20`
```css
width: 5rem;
```
#### `w-24`
```css
width: 6rem;
```
#### `w-28`
```css
width: 7rem;
```
#### `w-32`
```css
width: 8rem;
```
#### `w-36`
```css
width: 9rem;
```
#### `w-40`
```css
width: 10rem;
```
#### `w-44`
```css
width: 11rem;
```
#### `w-48`
```css
width: 12rem;
```
#### `w-52`
```css
width: 13rem;
```
#### `w-56`
```css
width: 14rem;
```
#### `w-60`
```css
width: 15rem;
```
#### `w-64`
```css
width: 16rem;
```
#### `w-72`
```css
width: 18rem;
```
#### `w-80`
```css
width: 20rem;
```
#### `w-96`
```css
width: 24rem;
```
#### `w-auto`
```css
width: auto;
```
#### `w-1/2`
```css
width: 50%;
```
#### `w-1/3`
```css
width: 33.333333%;
```
#### `w-2/3`
```css
width: 66.666667%;
```
#### `w-1/4`
```css
width: 25%;
```
#### `w-2/4`
```css
width: 50%;
```
#### `w-3/4`
```css
width: 75%;
```
#### `w-1/5`
```css
width: 20%;
```
#### `w-2/5`
```css
width: 40%;
```
#### `w-3/5`
```css
width: 60%;
```
#### `w-4/5`
```css
width: 80%;
```
#### `w-1/6`
```css
width: 16.666667%;
```
#### `w-2/6`
```css
width: 33.333333%;
```
#### `w-3/6`
```css
width: 50%;
```
#### `w-4/6`
```css
width: 66.666667%;
```
#### `w-5/6`
```css
width: 83.333333%;
```
#### `w-1/12`
```css
width: 8.333333%;
```
#### `w-2/12`
```css
width: 16.666667%;
```
#### `w-3/12`
```css
width: 25%;
```
#### `w-4/12`
```css
width: 33.333333%;
```
#### `w-5/12`
```css
width: 41.666667%;
```
#### `w-6/12`
```css
width: 50%;
```
#### `w-7/12`
```css
width: 58.333333%;
```
#### `w-8/12`
```css
width: 66.666667%;
```
#### `w-9/12`
```css
width: 75%;
```
#### `w-10/12`
```css
width: 83.333333%;
```
#### `w-11/12`
```css
width: 91.666667%;
```
#### `w-full`
```css
width: 100%;
```
#### `w-screen`
```css
width: 100vw;
```
#### `w-svw`
```css
width: 100svw;
```
#### `w-lvw`
```css
width: 100lvw;
```
#### `w-dvw`
```css
width: 100dvw;
```
#### `w-min`
```css
width: min-content;
```
#### `w-max`
```css
width: max-content;
```
#### `w-fit`
```css
width: fit-content;
```
#### `h-0`
```css
height: 0px;
```
#### `h-px`
```css
height: 1px;
```
#### `h-0.5`
```css
height: 0.125rem;
```
#### `h-1`
```css
height: 0.25rem;
```
#### `h-1.5`
```css
height: 0.375rem;
```
#### `h-2`
```css
height: 0.5rem;
```
#### `h-2.5`
```css
height: 0.625rem;
```
#### `h-3`
```css
height: 0.75rem;
```
#### `h-3.5`
```css
height: 0.875rem;
```
#### `h-4`
```css
height: 1rem;
```
#### `h-5`
```css
height: 1.25rem;
```
#### `h-6`
```css
height: 1.5rem;
```
#### `h-7`
```css
height: 1.75rem;
```
#### `h-8`
```css
height: 2rem;
```
#### `h-9`
```css
height: 2.25rem;
```
#### `h-10`
```css
height: 2.5rem;
```
#### `h-11`
```css
height: 2.75rem;
```
#### `h-12`
```css
height: 3rem;
```
#### `h-14`
```css
height: 3.5rem;
```
#### `h-16`
```css
height: 4rem;
```
#### `h-20`
```css
height: 5rem;
```
#### `h-24`
```css
height: 6rem;
```
#### `h-28`
```css
height: 7rem;
```
#### `h-32`
```css
height: 8rem;
```
#### `h-36`
```css
height: 9rem;
```
#### `h-40`
```css
height: 10rem;
```
#### `h-44`
```css
height: 11rem;
```
#### `h-48`
```css
height: 12rem;
```
#### `h-52`
```css
height: 13rem;
```
#### `h-56`
```css
height: 14rem;
```
#### `h-60`
```css
height: 15rem;
```
#### `h-64`
```css
height: 16rem;
```
#### `h-72`
```css
height: 18rem;
```
#### `h-80`
```css
height: 20rem;
```
#### `h-96`
```css
height: 24rem;
```
#### `h-auto`
```css
height: auto;
```
#### `h-1/2`
```css
height: 50%;
```
#### `h-1/3`
```css
height: 33.333333%;
```
#### `h-2/3`
```css
height: 66.666667%;
```
#### `h-1/4`
```css
height: 25%;
```
#### `h-2/4`
```css
height: 50%;
```
#### `h-3/4`
```css
height: 75%;
```
#### `h-1/5`
```css
height: 20%;
```
#### `h-2/5`
```css
height: 40%;
```
#### `h-3/5`
```css
height: 60%;
```
#### `h-4/5`
```css
height: 80%;
```
#### `h-1/6`
```css
height: 16.666667%;
```
#### `h-2/6`
```css
height: 33.333333%;
```
#### `h-3/6`
```css
height: 50%;
```
#### `h-4/6`
```css
height: 66.666667%;
```
#### `h-5/6`
```css
height: 83.333333%;
```
#### `h-full`
```css
height: 100%;
```
#### `h-screen`
```css
height: 100vh;
```
#### `h-svh`
```css
height: 100svh;
```
#### `h-lvh`
```css
height: 100lvh;
```
#### `h-dvh`
```css
height: 100dvh;
```
#### `h-min`
```css
height: min-content;
```
#### `h-max`
```css
height: max-content;
```
#### `h-fit`
```css
height: fit-content;
```
#### `min-w-0`
```css
min-width: 0px;
```
#### `min-w-1`
```css
min-width: 0.25rem;
```
#### `min-w-2`
```css
min-width: 0.5rem;
```
#### `min-w-3`
```css
min-width: 0.75rem;
```
#### `min-w-4`
```css
min-width: 1rem;
```
#### `min-w-5`
```css
min-width: 1.25rem;
```
#### `min-w-6`
```css
min-width: 1.5rem;
```
#### `min-w-7`
```css
min-width: 1.75rem;
```
#### `min-w-8`
```css
min-width: 2rem;
```
#### `min-w-9`
```css
min-width: 2.25rem;
```
#### `min-w-10`
```css
min-width: 2.5rem;
```
#### `min-w-11`
```css
min-width: 2.75rem;
```
#### `min-w-12`
```css
min-width: 3rem;
```
#### `min-w-14`
```css
min-width: 3.5rem;
```
#### `min-w-16`
```css
min-width: 4rem;
```
#### `min-w-20`
```css
min-width: 5rem;
```
#### `min-w-24`
```css
min-width: 6rem;
```
#### `min-w-28`
```css
min-width: 7rem;
```
#### `min-w-32`
```css
min-width: 8rem;
```
#### `min-w-36`
```css
min-width: 9rem;
```
#### `min-w-40`
```css
min-width: 10rem;
```
#### `min-w-44`
```css
min-width: 11rem;
```
#### `min-w-48`
```css
min-width: 12rem;
```
#### `min-w-52`
```css
min-width: 13rem;
```
#### `min-w-56`
```css
min-width: 14rem;
```
#### `min-w-60`
```css
min-width: 15rem;
```
#### `min-w-64`
```css
min-width: 16rem;
```
#### `min-w-72`
```css
min-width: 18rem;
```
#### `min-w-80`
```css
min-width: 20rem;
```
#### `min-w-96`
```css
min-width: 24rem;
```
#### `min-w-px`
```css
min-width: 1px;
```
#### `min-w-0.5`
```css
min-width: 0.125rem;
```
#### `min-w-1.5`
```css
min-width: 0.375rem;
```
#### `min-w-2.5`
```css
min-width: 0.625rem;
```
#### `min-w-3.5`
```css
min-width: 0.875rem;
```
#### `min-w-full`
```css
min-width: 100%;
```
#### `min-w-min`
```css
min-width: min-content;
```
#### `min-w-max`
```css
min-width: max-content;
```
#### `min-w-fit`
```css
min-width: fit-content;
```
#### `max-w-0`
```css
max-width: 0px;
```
#### `max-w-1`
```css
max-width: 0.25rem;
```
#### `max-w-2`
```css
max-width: 0.5rem;
```
#### `max-w-3`
```css
max-width: 0.75rem;
```
#### `max-w-4`
```css
max-width: 1rem;
```
#### `max-w-5`
```css
max-width: 1.25rem;
```
#### `max-w-6`
```css
max-width: 1.5rem;
```
#### `max-w-7`
```css
max-width: 1.75rem;
```
#### `max-w-8`
```css
max-width: 2rem;
```
#### `max-w-9`
```css
max-width: 2.25rem;
```
#### `max-w-10`
```css
max-width: 2.5rem;
```
#### `max-w-11`
```css
max-width: 2.75rem;
```
#### `max-w-12`
```css
max-width: 3rem;
```
#### `max-w-14`
```css
max-width: 3.5rem;
```
#### `max-w-16`
```css
max-width: 4rem;
```
#### `max-w-20`
```css
max-width: 5rem;
```
#### `max-w-24`
```css
max-width: 6rem;
```
#### `max-w-28`
```css
max-width: 7rem;
```
#### `max-w-32`
```css
max-width: 8rem;
```
#### `max-w-36`
```css
max-width: 9rem;
```
#### `max-w-40`
```css
max-width: 10rem;
```
#### `max-w-44`
```css
max-width: 11rem;
```
#### `max-w-48`
```css
max-width: 12rem;
```
#### `max-w-52`
```css
max-width: 13rem;
```
#### `max-w-56`
```css
max-width: 14rem;
```
#### `max-w-60`
```css
max-width: 15rem;
```
#### `max-w-64`
```css
max-width: 16rem;
```
#### `max-w-72`
```css
max-width: 18rem;
```
#### `max-w-80`
```css
max-width: 20rem;
```
#### `max-w-96`
```css
max-width: 24rem;
```
#### `max-w-px`
```css
max-width: 1px;
```
#### `max-w-0.5`
```css
max-width: 0.125rem;
```
#### `max-w-1.5`
```css
max-width: 0.375rem;
```
#### `max-w-2.5`
```css
max-width: 0.625rem;
```
#### `max-w-3.5`
```css
max-width: 0.875rem;
```
#### `max-w-full`
```css
max-width: 100%;
```
#### `max-w-max`
```css
max-width: max-content;
```
#### `max-w-min`
```css
max-width: min-content;
```
#### `max-w-fit`
```css
max-width: fit-content;
```
#### `size-0`
```css
width: 0px; height: 0px;
```
#### `size-px`
```css
width: 1px; height: 1px;
```
#### `size-0.5`
```css
width: 0.125rem; height: 0.125rem;
```
#### `size-1`
```css
width: 0.25rem; height: 0.25rem;
```
#### `size-1.5`
```css
width: 0.375rem; height: 0.375rem;
```
#### `size-2`
```css
width: 0.5rem; height: 0.5rem;
```
#### `size-2.5`
```css
width: 0.625rem; height: 0.625rem;
```
#### `size-3`
```css
width: 0.75rem; height: 0.75rem;
```
#### `size-3.5`
```css
width: 0.875rem; height: 0.875rem;
```
#### `size-4`
```css
width: 1rem; height: 1rem;
```
#### `size-5`
```css
width: 1.25rem; height: 1.25rem;
```
#### `size-6`
```css
width: 1.5rem; height: 1.5rem;
```
#### `size-7`
```css
width: 1.75rem; height: 1.75rem;
```
#### `size-8`
```css
width: 2rem; height: 2rem;
```
#### `size-9`
```css
width: 2.25rem; height: 2.25rem;
```
#### `size-10`
```css
width: 2.5rem; height: 2.5rem;
```
#### `size-11`
```css
width: 2.75rem; height: 2.75rem;
```
#### `size-12`
```css
width: 3rem; height: 3rem;
```
#### `size-14`
```css
width: 3.5rem; height: 3.5rem;
```
#### `size-16`
```css
width: 4rem; height: 4rem;
```
#### `size-20`
```css
width: 5rem; height: 5rem;
```
#### `size-24`
```css
width: 6rem; height: 6rem;
```
#### `size-28`
```css
width: 7rem; height: 7rem;
```
#### `size-32`
```css
width: 8rem; height: 8rem;
```
#### `size-36`
```css
width: 9rem; height: 9rem;
```
#### `size-40`
```css
width: 10rem; height: 10rem;
```
#### `size-44`
```css
width: 11rem; height: 11rem;
```
#### `size-48`
```css
width: 12rem; height: 12rem;
```
#### `size-52`
```css
width: 13rem; height: 13rem;
```
#### `size-56`
```css
width: 14rem; height: 14rem;
```
#### `size-60`
```css
width: 15rem; height: 15rem;
```
#### `size-64`
```css
width: 16rem; height: 16rem;
```
#### `size-72`
```css
width: 18rem; height: 18rem;
```
#### `size-80`
```css
width: 20rem; height: 20rem;
```
#### `size-96`
```css
width: 24rem; height: 24rem;
```
#### `size-auto`
```css
width: auto; height: auto;
```
#### `size-1/2`
```css
width: 50%; height: 50%;
```
#### `size-1/3`
```css
width: 33.333333%; height: 33.333333%;
```
#### `size-2/3`
```css
width: 66.666667%; height: 66.666667%;
```
#### `size-1/4`
```css
width: 25%; height: 25%;
```
#### `size-2/4`
```css
width: 50%; height: 50%;
```
#### `size-3/4`
```css
width: 75%; height: 75%;
```
#### `size-1/5`
```css
width: 20%; height: 20%;
```
#### `size-2/5`
```css
width: 40%; height: 40%;
```
#### `size-3/5`
```css
width: 60%; height: 60%;
```
#### `size-4/5`
```css
width: 80%; height: 80%;
```
#### `size-1/6`
```css
width: 16.666667%; height: 16.666667%;
```
#### `size-2/6`
```css
width: 33.333333%; height: 33.333333%;
```
#### `size-3/6`
```css
width: 50%; height: 50%;
```
#### `size-4/6`
```css
width: 66.666667%; height: 66.666667%;
```
#### `size-5/6`
```css
width: 83.333333%; height: 83.333333%;
```
#### `size-1/12`
```css
width: 8.333333%; height: 8.333333%;
```
#### `size-2/12`
```css
width: 16.666667%; height: 16.666667%;
```
#### `size-3/12`
```css
width: 25%; height: 25%;
```
#### `size-4/12`
```css
width: 33.333333%; height: 33.333333%;
```
#### `size-5/12`
```css
width: 41.666667%; height: 41.666667%;
```
#### `size-6/12`
```css
width: 50%; height: 50%;
```
#### `size-7/12`
```css
width: 58.333333%; height: 58.333333%;
```
#### `size-8/12`
```css
width: 66.666667%; height: 66.666667%;
```
#### `size-9/12`
```css
width: 75%; height: 75%;
```
#### `size-10/12`
```css
width: 83.333333%; height: 83.333333%;
```
#### `size-11/12`
```css
width: 91.666667%; height: 91.666667%;
```
#### `size-full`
```css
width: 100%; height: 100%;
```
#### `size-min`
```css
width: min-content; height: min-content;
```
#### `size-max`
```css
width: max-content; height: max-content;
```
#### `size-fit`
```css
width: fit-content; height: fit-content;
```
Colors
View Colors
#### `inherit`
```css
inherit
```
#### `current`
```css
currentColor
```
#### `transparent`
```css
transparent
```
#### `black`
```css
rgb(0 0 0)
```
#### `white`
```css
rgb(255 255 255)
```
#### `slate-50`
```css
rgb(248 250 252)
```
#### `slate-100`
```css
rgb(241 245 249)
```
#### `slate-200`
```css
rgb(226 232 240)
```
#### `slate-300`
```css
rgb(203 213 225)
```
#### `slate-400`
```css
rgb(148 163 184)
```
#### `slate-500`
```css
rgb(100 116 139)
```
#### `slate-600`
```css
rgb(71 85 105)
```
#### `slate-700`
```css
rgb(51 65 85)
```
#### `slate-800`
```css
rgb(30 41 59)
```
#### `slate-900`
```css
rgb(15 23 42)
```
#### `slate-950`
```css
rgb(2 6 23)
```
#### `gray-50`
```css
rgb(249 250 251)
```
#### `gray-100`
```css
rgb(243 244 246)
```
#### `gray-200`
```css
rgb(229 231 235)
```
#### `gray-300`
```css
rgb(209 213 219)
```
#### `gray-400`
```css
rgb(156 163 175)
```
#### `gray-500`
```css
rgb(107 114 128)
```
#### `gray-600`
```css
rgb(75 85 99)
```
#### `gray-700`
```css
rgb(55 65 81)
```
#### `gray-800`
```css
rgb(31 41 55)
```
#### `gray-900`
```css
rgb(17 24 39)
```
#### `gray-950`
```css
rgb(3 7 18)
```
#### `zinc-50`
```css
rgb(250 250 250)
```
#### `zinc-100`
```css
rgb(244 244 245)
```
#### `zinc-200`
```css
rgb(228 228 231)
```
#### `zinc-300`
```css
rgb(212 212 216)
```
#### `zinc-400`
```css
rgb(161 161 170)
```
#### `zinc-500`
```css
rgb(113 113 122)
```
#### `zinc-600`
```css
rgb(82 82 91)
```
#### `zinc-700`
```css
rgb(63 63 70)
```
#### `zinc-800`
```css
rgb(39 39 42)
```
#### `zinc-900`
```css
rgb(24 24 27)
```
#### `zinc-950`
```css
rgb(9 9 11)
```
#### `neutral-50`
```css
rgb(250 250 250)
```
#### `neutral-100`
```css
rgb(245 245 245)
```
#### `neutral-200`
```css
rgb(229 229 229)
```
#### `neutral-300`
```css
rgb(212 212 212)
```
#### `neutral-400`
```css
rgb(163 163 163)
```
#### `neutral-500`
```css
rgb(115 115 115)
```
#### `neutral-600`
```css
rgb(82 82 82)
```
#### `neutral-700`
```css
rgb(64 64 64)
```
#### `neutral-800`
```css
rgb(38 38 38)
```
#### `neutral-900`
```css
rgb(23 23 23)
```
#### `neutral-950`
```css
rgb(10 10 10)
```
#### `stone-50`
```css
rgb(250 250 249)
```
#### `stone-100`
```css
rgb(245 245 244)
```
#### `stone-200`
```css
rgb(231 229 228)
```
#### `stone-300`
```css
rgb(214 211 209)
```
#### `stone-400`
```css
rgb(168 162 158)
```
#### `stone-500`
```css
rgb(120 113 108)
```
#### `stone-600`
```css
rgb(87 83 78)
```
#### `stone-700`
```css
rgb(68 64 60)
```
#### `stone-800`
```css
rgb(41 37 36)
```
#### `stone-900`
```css
rgb(28 25 23)
```
#### `stone-950`
```css
rgb(12 10 9)
```
#### `red-50`
```css
rgb(254 242 242)
```
#### `red-100`
```css
rgb(254 226 226)
```
#### `red-200`
```css
rgb(254 202 202)
```
#### `red-300`
```css
rgb(252 165 165)
```
#### `red-400`
```css
rgb(248 113 113)
```
#### `red-500`
```css
rgb(239 68 68)
```
#### `red-600`
```css
rgb(220 38 38)
```
#### `red-700`
```css
rgb(185 28 28)
```
#### `red-800`
```css
rgb(153 27 27)
```
#### `red-900`
```css
rgb(127 29 29)
```
#### `red-950`
```css
rgb(69 10 10)
```
#### `orange-50`
```css
rgb(255 247 237)
```
#### `orange-100`
```css
rgb(255 237 213)
```
#### `orange-200`
```css
rgb(254 215 170)
```
#### `orange-300`
```css
rgb(253 186 116)
```
#### `orange-400`
```css
rgb(251 146 60)
```
#### `orange-500`
```css
rgb(249 115 22)
```
#### `orange-600`
```css
rgb(234 88 12)
```
#### `orange-700`
```css
rgb(194 65 12)
```
#### `orange-800`
```css
rgb(154 52 18)
```
#### `orange-900`
```css
rgb(124 45 18)
```
#### `orange-950`
```css
rgb(67 20 7)
```
#### `amber-50`
```css
rgb(255 251 235)
```
#### `amber-100`
```css
rgb(254 243 199)
```
#### `amber-200`
```css
rgb(253 230 138)
```
#### `amber-300`
```css
rgb(252 211 77)
```
#### `amber-400`
```css
rgb(251 191 36)
```
#### `amber-500`
```css
rgb(245 158 11)
```
#### `amber-600`
```css
rgb(217 119 6)
```
#### `amber-700`
```css
rgb(180 83 9)
```
#### `amber-800`
```css
rgb(146 64 14)
```
#### `amber-900`
```css
rgb(120 53 15)
```
#### `amber-950`
```css
rgb(69 26 3)
```
#### `yellow-50`
```css
rgb(254 252 232)
```
#### `yellow-100`
```css
rgb(254 249 195)
```
#### `yellow-200`
```css
rgb(254 240 138)
```
#### `yellow-300`
```css
rgb(253 224 71)
```
#### `yellow-400`
```css
rgb(250 204 21)
```
#### `yellow-500`
```css
rgb(234 179 8)
```
#### `yellow-600`
```css
rgb(202 138 4)
```
#### `yellow-700`
```css
rgb(161 98 7)
```
#### `yellow-800`
```css
rgb(133 77 14)
```
#### `yellow-900`
```css
rgb(113 63 18)
```
#### `yellow-950`
```css
rgb(66 32 6)
```
#### `lime-50`
```css
rgb(247 254 231)
```
#### `lime-100`
```css
rgb(236 252 203)
```
#### `lime-200`
```css
rgb(217 249 157)
```
#### `lime-300`
```css
rgb(190 242 100)
```
#### `lime-400`
```css
rgb(163 230 53)
```
#### `lime-500`
```css
rgb(132 204 22)
```
#### `lime-600`
```css
rgb(101 163 13)
```
#### `lime-700`
```css
rgb(77 124 15)
```
#### `lime-800`
```css
rgb(63 98 18)
```
#### `lime-900`
```css
rgb(54 83 20)
```
#### `lime-950`
```css
rgb(26 46 5)
```
#### `green-50`
```css
rgb(240 253 244)
```
#### `green-100`
```css
rgb(220 252 231)
```
#### `green-200`
```css
rgb(187 247 208)
```
#### `green-300`
```css
rgb(134 239 172)
```
#### `green-400`
```css
rgb(74 222 128)
```
#### `green-500`
```css
rgb(34 197 94)
```
#### `green-600`
```css
rgb(22 163 74)
```
#### `green-700`
```css
rgb(21 128 61)
```
#### `green-800`
```css
rgb(22 101 52)
```
#### `green-900`
```css
rgb(20 83 45)
```
#### `green-950`
```css
rgb(5 46 22)
```
#### `emerald-50`
```css
rgb(236 253 245)
```
#### `emerald-100`
```css
rgb(209 250 229)
```
#### `emerald-200`
```css
rgb(167 243 208)
```
#### `emerald-300`
```css
rgb(110 231 183)
```
#### `emerald-400`
```css
rgb(52 211 153)
```
#### `emerald-500`
```css
rgb(16 185 129)
```
#### `emerald-600`
```css
rgb(5 150 105)
```
#### `emerald-700`
```css
rgb(4 120 87)
```
#### `emerald-800`
```css
rgb(6 95 70)
```
#### `emerald-900`
```css
rgb(6 78 59)
```
#### `emerald-950`
```css
rgb(2 44 34)
```
#### `teal-50`
```css
rgb(240 253 250)
```
#### `teal-100`
```css
rgb(204 251 241)
```
#### `teal-200`
```css
rgb(153 246 228)
```
#### `teal-300`
```css
rgb(94 234 212)
```
#### `teal-400`
```css
rgb(45 212 191)
```
#### `teal-500`
```css
rgb(20 184 166)
```
#### `teal-600`
```css
rgb(13 148 136)
```
#### `teal-700`
```css
rgb(15 118 110)
```
#### `teal-800`
```css
rgb(17 94 89)
```
#### `teal-900`
```css
rgb(19 78 74)
```
#### `teal-950`
```css
rgb(4 47 46)
```
#### `cyan-50`
```css
rgb(236 254 255)
```
#### `cyan-100`
```css
rgb(207 250 254)
```
#### `cyan-200`
```css
rgb(165 243 252)
```
#### `cyan-300`
```css
rgb(103 232 249)
```
#### `cyan-400`
```css
rgb(34 211 238)
```
#### `cyan-500`
```css
rgb(6 182 212)
```
#### `cyan-600`
```css
rgb(8 145 178)
```
#### `cyan-700`
```css
rgb(14 116 144)
```
#### `cyan-800`
```css
rgb(21 94 117)
```
#### `cyan-900`
```css
rgb(22 78 99)
```
#### `cyan-950`
```css
rgb(8 51 68)
```
#### `sky-50`
```css
rgb(240 249 255)
```
#### `sky-100`
```css
rgb(224 242 254)
```
#### `sky-200`
```css
rgb(186 230 253)
```
#### `sky-300`
```css
rgb(125 211 252)
```
#### `sky-400`
```css
rgb(56 189 248)
```
#### `sky-500`
```css
rgb(14 165 233)
```
#### `sky-600`
```css
rgb(2 132 199)
```
#### `sky-700`
```css
rgb(3 105 161)
```
#### `sky-800`
```css
rgb(7 89 133)
```
#### `sky-900`
```css
rgb(12 74 110)
```
#### `sky-950`
```css
rgb(8 47 73)
```
#### `blue-50`
```css
rgb(239 246 255)
```
#### `blue-100`
```css
rgb(219 234 254)
```
#### `blue-200`
```css
rgb(191 219 254)
```
#### `blue-300`
```css
rgb(147 197 253)
```
#### `blue-400`
```css
rgb(96 165 250)
```
#### `blue-500`
```css
rgb(59 130 246)
```
#### `blue-600`
```css
rgb(37 99 235)
```
#### `blue-700`
```css
rgb(29 78 216)
```
#### `blue-800`
```css
rgb(30 64 175)
```
#### `blue-900`
```css
rgb(30 58 138)
```
#### `blue-950`
```css
rgb(23 37 84)
```
#### `indigo-50`
```css
rgb(238 242 255)
```
#### `indigo-100`
```css
rgb(224 231 255)
```
#### `indigo-200`
```css
rgb(199 210 254)
```
#### `indigo-300`
```css
rgb(165 180 252)
```
#### `indigo-400`
```css
rgb(129 140 248)
```
#### `indigo-500`
```css
rgb(99 102 241)
```
#### `indigo-600`
```css
rgb(79 70 229)
```
#### `indigo-700`
```css
rgb(67 56 202)
```
#### `indigo-800`
```css
rgb(55 48 163)
```
#### `indigo-900`
```css
rgb(49 46 129)
```
#### `indigo-950`
```css
rgb(30 27 75)
```
#### `violet-50`
```css
rgb(245 243 255)
```
#### `violet-100`
```css
rgb(237 233 254)
```
#### `violet-200`
```css
rgb(221 214 254)
```
#### `violet-300`
```css
rgb(196 181 253)
```
#### `violet-400`
```css
rgb(167 139 250)
```
#### `violet-500`
```css
rgb(139 92 246)
```
#### `violet-600`
```css
rgb(124 58 237)
```
#### `violet-700`
```css
rgb(109 40 217)
```
#### `violet-800`
```css
rgb(91 33 182)
```
#### `violet-900`
```css
rgb(76 29 149)
```
#### `violet-950`
```css
rgb(46 16 101)
```
#### `purple-50`
```css
rgb(250 245 255)
```
#### `purple-100`
```css
rgb(243 232 255)
```
#### `purple-200`
```css
rgb(233 213 255)
```
#### `purple-300`
```css
rgb(216 180 254)
```
#### `purple-400`
```css
rgb(192 132 252)
```
#### `purple-500`
```css
rgb(168 85 247)
```
#### `purple-600`
```css
rgb(147 51 234)
```
#### `purple-700`
```css
rgb(126 34 206)
```
#### `purple-800`
```css
rgb(107 33 168)
```
#### `purple-900`
```css
rgb(88 28 135)
```
#### `purple-950`
```css
rgb(59 7 100)
```
#### `fuchsia-50`
```css
rgb(253 244 255)
```
#### `fuchsia-100`
```css
rgb(250 232 255)
```
#### `fuchsia-200`
```css
rgb(245 208 254)
```
#### `fuchsia-300`
```css
rgb(240 171 252)
```
#### `fuchsia-400`
```css
rgb(232 121 249)
```
#### `fuchsia-500`
```css
rgb(217 70 239)
```
#### `fuchsia-600`
```css
rgb(192 38 211)
```
#### `fuchsia-700`
```css
rgb(162 28 175)
```
#### `fuchsia-800`
```css
rgb(134 25 143)
```
#### `fuchsia-900`
```css
rgb(112 26 117)
```
#### `fuchsia-950`
```css
rgb(74 4 78)
```
#### `pink-50`
```css
rgb(253 242 248)
```
#### `pink-100`
```css
rgb(252 231 243)
```
#### `pink-200`
```css
rgb(251 207 232)
```
#### `pink-300`
```css
rgb(249 168 212)
```
#### `pink-400`
```css
rgb(244 114 182)
```
#### `pink-500`
```css
rgb(236 72 153)
```
#### `pink-600`
```css
rgb(219 39 119)
```
#### `pink-700`
```css
rgb(190 24 93)
```
#### `pink-800`
```css
rgb(157 23 77)
```
#### `pink-900`
```css
rgb(131 24 67)
```
#### `pink-950`
```css
rgb(80 7 36)
```
#### `rose-50`
```css
rgb(255 241 242)
```
#### `rose-100`
```css
rgb(255 228 230)
```
#### `rose-200`
```css
rgb(254 205 211)
```
#### `rose-300`
```css
rgb(253 164 175)
```
#### `rose-400`
```css
rgb(251 113 133)
```
#### `rose-500`
```css
rgb(244 63 94)
```
#### `rose-600`
```css
rgb(225 29 72)
```
#### `rose-700`
```css
rgb(190 18 60)
```
#### `rose-800`
```css
rgb(159 18 57)
```
#### `rose-900`
```css
rgb(136 19 55)
```
#### `rose-950`
```css
rgb(76 5 25)
```
All versions of marco with dependencies
PHP Build Version
8.0.21 7.3.33
Package Version
v0.0.7
v0.0.6
Requires
php Version
^8.2
Composer command for our command line client (download client )
This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free.
Standard composer command
The package lnear/marco contains the following files Loading the files please wait ...