主题
Tailwind CSS
传统的网页需要使用 HTML + CSS 构建,而我们一般将 CSS 文件单独存放,然后在 HTML 代码中引用。拿我的主站 ImQi1 来说,我的 CSS 放在了云存储中还有各种缓存,若样式有更新,最新的代码同步到客户端需要很费劲。有一种方法就是使用已经封装好的组件库,只需要记住 CSS 类名,然后在 CSS 中写好样式,再改变 HTML 代码中的结构,即可改变样式,这类 CSS 有一套很出名的框架叫 BootStrap。但是 BootStrap 是已经封装好的组件库,它和这里的 Tailwind CSS 不同。
Tailwind CSS 为每个 CSS 属性封装成了一个类,一个类就对应一种或多种 CSS 属性和值的组合。
比如我们想让一个盒子位于父盒子的中间,我们可以使用传统的 CSS:
css
.outer {
display: flex;
place-content: center;
place-items: center;
}而我们如果使用 Tailwind CSS,我们只需要为父盒子添加三个类名即可:flex、place-content-center、place-items-center。
它们相当于:
css
.flex {
display: flex;
}
.place-content-center {
place-content: center;
}
.place-items-center {
place-items: center;
}Tailwind CSS 为很多 CSS 都封装了类名,借助这些,我们只需要改变 HTML 元素的类名,就可以完成传统 HTML + CSS 才能完成的工作。
安装
这里照例引出官方文档,由于本教程都是速查,只用最简单的语言教最基础、最实用的知识。TailWind CSS 的用法远不止于本教程罗列出的,想要更深入的学习,可以 手敲代码 + 阅读官方文档。
Tailwind CLI:
首先我们先通过 NPM 安装 Tailwind CSS 包。
shell
npm install -D tailwindcss
npx tailwindcss init然后创建 tailwind.config.js 文件:
js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}然后在主 CSS 文件中添加 @tailwind 指令。
css
@tailwind base;
@tailwind components;
@tailwind utilities;返回模板文件,扫描所有类名,然后编译。
shell
npx tailwindcss -i ./src/input.css -o ./src/output.css --watch这里的主 CSS 文件为 input.css,输出文件为 output.css。
接下来引入编译好的 CSS 文件即可。
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./output.css" rel="stylesheet">
</head>
<body>
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
</body>
</html>我们也可以引用 Tailwind CSS 的 CDN,它是一个 JavaScript 文件,它也会自动地扫描文件中的所有类名然后输出为 style 标签。但不要将此 JS 文件直接用于生产环境中。
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
</body>
</html>这里的 https://cdn.tailwindcss.com 可以换成本站地址 https://static.qi1.website/js/tailwindcss.js 。
这里和开头介绍的可能有点矛盾:明明都说好了只通过更改 HTML 代码就可以改变整个网页的样式,到头来不还是要编辑 CSS 文件。在这里我的理解是,TailwindCSS 为我们省去了很多编写 CSS 的时间,但网页的 HTML 代码和 CSS 代码分开管理还是很有必要的。 Tailwind CSS 的作用就是只需编辑一个文件就可以改变样式,而不用使用传统的 “类” + “类的样式” 这样去改,而是 “类” -> “生成样式”。我也不知道这样说对不对,但是用了它就是很方便。
IDE 支持
这里介绍两个 IDE,一个是大众普遍使用的 VS Code,另一个是我经常使用的 JetBrains IDE WebStorm。
VS Code:
这里需要使用 Tailwind CSS IntelliSense ,然后需要有 Tailwind CSS 配置文件,名称是 tailwind.config.{js|mjs|cjs|ts} 。
WebStorm:
首先安装 Tailwind CSS:
shell
npm install -D tailwindcss # 安装 Tailwind CSS
npx tailwindcss init # 生成 tailwind.config 文件WebStorm 的代码自动补全功能将在 @apply指令被应用后在 HTML 文件和 CSS 文件中生效,它也会在 JS 中含有 HTML 代码的上下文生效。

配置文件 - 生成
配置文件通过命令 npx tailwindcss init 生成,文件名为 tailwind.config.js,它是为了满足用户自定义需求的。
一个 Tailwind CSS 的配置文件可以是:
js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js}'],
theme: {
colors: {
'blue': '#1fb6ff',
'purple': '#7e5bef',
'pink': '#ff49db',
'orange': '#ff7849',
'green': '#13ce66',
'yellow': '#ffc82c',
'gray-dark': '#273444',
'gray': '#8492a6',
'gray-light': '#d3dce6',
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
extend: {
spacing: {
'8xl': '96rem',
'9xl': '128rem',
},
borderRadius: {
'4xl': '2rem',
}
}
},
}配置的每一部分都是可选的,例如上面,colors 配置项替换了 Tailwind CSS 默认的颜色,fontFamily 配置项替换了默认的字体。
配置文件 - 主题
上一节中,themes 配置项就是为主题配置颜色、字体用的,这里介绍些常用的,可在 themes 里面指定的。
screen 用于配置项目中的自定义断点。
js
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
}
}
}colors 用于配置项目的默认颜色。
js
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
colors: {
transparent: 'transparent',
black: '#000',
white: '#fff',
gray: {
100: '#f7fafc',
// ...
900: '#1a202c',
},
// ...
}
}
}themes 的其余部分用于配置每个核心插件可用的值。
如 borderRadius:
js
module.exports = {
theme: {
borderRadius: {
'none': '0',
'sm': '.125rem',
DEFAULT: '.25rem',
'lg': '.5rem',
'full': '9999px',
},
}
}键决定生成的类的后缀,值决定实际CSS声明的值。
上面的示例 borderRadius 配置将生成以下CSS类:
css
.rounded-none { border-radius: 0 }
.rounded-sm { border-radius: .125rem }
.rounded { border-radius: .25rem }
.rounded-lg { border-radius: .5rem }
.rounded-full { border-radius: 9999px }核心概念 - 修饰符
有人可能会问,Tailwind CSS 不就相当于内联样式吗,其实还是有点区别的,比如伪元素不能写在内联样式中,但是 Tailwind CSS 可以。
方法就是在类名的开头加一个修饰符加一个英文冒号,该修饰符就描述了对应元素处于的状态时应用后面的样式。
如:
html
<button class="bg-sky-500 hover:bg-sky-700 ...">
Save changes
</button>在 button 正常状态时,它将显示较浅的蓝色,但在悬浮在它上面时,它将显示为深一点的蓝色。
Tailwind CSS 支持很多修饰符:
- 伪类,如
:hover,:focus,:first-child,和:required - 伪元素,比如
::before,::after,::placeholder,和::selection - 媒体和特性查询,如响应断点、黑暗模式和
prefers-reduced-motion - 属性选择器,如
[dir="rtl"]和[open]
它们还可以叠加,如在黑暗模式下该元素悬浮的样式:
html
<button class="dark:md:hover:bg-fuchsia-600 ...">
Save changes
</button>下面列举一些我觉得常用的修饰符:
- 使用
hover、focus和active修饰符样式悬停、焦点和活动元素。 - 使用
first和last修饰符为第一个子元素或最后一个子元素设计样式。 - 使用
odd和even修饰符对奇数或偶数子元素进行样式化。 - 使用修饰符
required、invalid和disabled为不同状态的表单元素添加样式。 - 使用
before和after修饰符样式::before和::after伪元素。 - 使用
placeholder修饰符为任何输入或文本区域的占位符文本设置样式。 - 使用
marker修饰符为列表中的计数器或项目符号设置样式。 - 使用
selection修饰符为当前文本选择设置样式。 - 要在特定的断点处设置元素的样式,可以使用响应式修饰符,如
md和lg。
核心概念 - 响应式设计
首先要在 head 标签内引入下面的代码:
html
<meta name="viewport" content="width=device-width, initial-scale=1.0">然后,设置在每个断点处生效某个样式,就写成 断点 + : + 样式 的样子:
html
<!-- 默认宽度为16,中等屏幕为32,大屏幕为48 -->
<img class="w-16 md:w-32 lg:w-48" src="...">默认情况下有五个断点,它们都是常见的设备分辨率:
| 断点前缀 | 最小宽度 | CSS |
|---|---|---|
sm | 640px | @media (min-width: 640px) { ... } |
md | 768px | @media (min-width: 768px) { ... } |
lg | 1024px | @media (min-width: 1024px) { ... } |
xl | 1280px | @media (min-width: 1280px) { ... } |
2xl | 1536px | @media (min-width: 1536px) { ... } |
我们也可以设定断点范围,在断点范围内应用样式。将响应式修饰符(如 md )与 max-* 修饰符堆叠在一起,以将该样式限制在特定的范围内:
html
<div class="md:max-xl:flex">
<!-- ... -->
</div>可用的范围和它们对应的 CSS 代码:
| 修饰符 | 媒体查询 |
|---|---|
max-sm | @media not all and (min-width: 640px) { ... } |
max-md | @media not all and (min-width: 768px) { ... } |
max-lg | @media not all and (min-width: 1024px) { ... } |
max-xl | @media not all and (min-width: 1280px) { ... } |
max-2xl | @media not all and (min-width: 1536px) { ... } |
核心概念 - 代码重用
这里 Tailwind CSS 官方文档花费了大量篇幅介绍了其他重用样式的方法,目的是为了引出 Tailwind CSS 解决此问题的方式,在这里直接介绍。
如果我们使用了像 Vue 这样的前端框架,我们可以将这类重复的样式封装成一个组件,然后循环引入即可。
我们也可以使用 Tailwind CSS 提供的 @apply 指令来为一个自定义类名应用哪些 Tailwind CSS 预设的组件,如:
html
<!-- 抽象成类之前 -->
<button class="py-2 px-5 bg-violet-500 text-white font-semibold rounded-full shadow-md hover:bg-violet-700 focus:outline-none focus:ring focus:ring-violet-400 focus:ring-opacity-75">
保存
</button>
<!-- 抽象成类之后 -->
<button class="btn-primary">
保存
</button>css
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn-primary {
@apply py-2 px-5 bg-violet-500 text-white font-semibold rounded-full shadow-md hover:bg-violet-700 focus:outline-none focus:ring focus:ring-violet-400 focus:ring-opacity-75;
}
}核心概念 - 黑暗模式
现在,网页、操作系统普遍设计了暗黑模式,Tailwind CSS 包含了一个 dark 变体,可以让我们非常方便地设计网页的暗黑模式。
首先,在这里需要介绍一个 CSS 属性:prefers-color-scheme。MDN 上的 prefers-color-scheme
它是一个媒体查询属性。通过字面意思,它用于检测用户是否有将系统的主题色设置为亮色或者暗色。它有三个值:
no-preference:表示系统未得知用户在这方面的选项。在布尔值上下文中,其执行结果为 false。light:表示用户已告知系统他们选择使用浅色主题的界面。dark:表示用户已告知系统他们选择使用暗色主题的界面。
这个例子使用了一个有黑色背景和白色文字的元素,当用户使用浅色主题时,会翻转黑白颜色。
html
<div class="day">Day (initial)</div>
<div class="day light-scheme">Day (changes in light scheme)</div>
<div class="day dark-scheme">Day (changes in dark scheme)</div>
<br />
<div class="night">Night (initial)</div>
<div class="night light-scheme">Night (changes in light scheme)</div>
<div class="night dark-scheme">Night (changes in dark scheme)</div>css
.day {
background: #eee;
color: black;
}
.night {
background: #333;
color: white;
}
@media (prefers-color-scheme: dark) {
.day.dark-scheme {
background: #333;
color: white;
}
.night.dark-scheme {
background: black;
color: #ddd;
}
}
@media (prefers-color-scheme: light) {
.day.light-scheme {
background: white;
color: #555;
}
.night.light-scheme {
background: #eee;
color: black;
}
}
.day,
.night {
display: inline-block;
padding: 1em;
width: 7em;
height: 2em;
vertical-align: middle;
}Tailwind CSS 的暗色模式就是通过该属性实现的,当然,我们也可以手动切换亮暗色模式,方法是通过改动 Tailwind CSS 配置文件实现。
js
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'selector',
// ...
}现在,与基于 prefers-color-scheme 应用 dark:{class} 类不同,当 dark 类出现在 HTML 树的较早位置时,它们将被应用。
html
<!-- 未启用深色模式 -->
<html>
<body>
<!-- 白色 -->
<div class="bg-white dark:bg-black">
<!-- ... -->
</div>
</body>
</html>
<!-- 已启用深色模式 -->
<html class="dark">
<body>
<!-- 黑色 -->
<div class="bg-white dark:bg-black">
<!-- ... -->
</div>
</body>
</html>如果在 Tailwind 配置中设置了前缀,请确保将其添加到 dark 类中。例如,tw- 前缀需要使用 tw-dark 类来启用暗模式。
selector 策略可用于支持用户的系统偏好或通过使用 window.matchMedia() API 手动选择模式。
下面是一个简单的例子,说明如何支持亮模式和暗模式,以及如何尊重操作系统偏好:
js
// 在页面加载或更改主题时,最好在“head”中添加内联以避免 FOUC
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
// 当用户选择使用亮色模式
localStorage.theme = 'light'
// 当用户选择使用暗色模式
localStorage.theme = 'dark'
// 当用户明确选择尊重操作系统偏好时
localStorage.removeItem('theme')布局 - display
下列介绍的类名,一般一个类名对应一个属性,比如
flex类名对应的是display: flex。从这里开始,下面只列举我在开发中常用的 CSS 样式,更多样式请前往 Tailwind CSS 官方文档查阅。
| 类 | 对应的 CSS |
|---|---|
| block | display: block; |
| inline-block | display: inline-block; |
| inline | display: inline; |
| flex | display: flex; |
| inline-flex | display: inline-flex; |
| table | display: table; |
| inline-table | display: inline-table; |
| table-caption | display: table-caption; |
| table-cell | display: table-cell; |
| table-column | display: table-column; |
| table-column-group | display: table-column-group; |
| table-footer-group | display: table-footer-group; |
| table-header-group | display: table-header-group; |
| table-row-group | display: table-row-group; |
| table-row | display: table-row; |
| flow-root | display: flow-root; |
| grid | display: grid; |
| inline-grid | display: inline-grid; |
| contents | display: contents; |
| list-item | display: list-item; |
| hidden | display: none; |
布局 - 对象填充方式
| 类 | 对应的 CSS |
|---|---|
| object-contain | object-fit: contain; |
| object-cover | object-fit: cover; |
| object-fill | object-fit: fill; |
| object-none | object-fit: none; |
| object-scale-down | object-fit: scale-down; |
布局 - 对象溢出方式
| 类 | 对应的 CSS |
|---|---|
| overflow-auto | overflow: auto; |
| overflow-hidden | overflow: hidden; |
| overflow-clip | overflow: clip; |
| overflow-visible | overflow: visible; |
| overflow-scroll | overflow: scroll; |
| overflow-x-auto | overflow-x: auto; |
| overflow-y-auto | overflow-y: auto; |
| overflow-x-hidden | overflow-x: hidden; |
| overflow-y-hidden | overflow-y: hidden; |
| overflow-x-clip | overflow-x: clip; |
| overflow-y-clip | overflow-y: clip; |
| overflow-x-visible | overflow-x: visible; |
| overflow-y-visible | overflow-y: visible; |
| overflow-x-scroll | overflow-x: scroll; |
| overflow-y-scroll | overflow-y: scroll; |
布局 - 定位
| 类 | 对应的 CSS |
|---|---|
| static | position: static; |
| fixed | position: fixed; |
| absolute | position: absolute; |
| relative | position: relative; |
| sticky | position: sticky; |
布局 - 上下左右
| 类 | 对应的 CSS |
|---|---|
| inset-0 | inset: 0px; |
| inset-x-0 | left: 0px; right: 0px; |
| inset-y-0 | top: 0px; bottom: 0px; |
| start-0 | inset-inline-start: 0px; |
| end-0 | inset-inline-end: 0px; |
| top-0 | top: 0px; |
| right-0 | right: 0px; |
| bottom-0 | bottom: 0px; |
| left-0 | left: 0px; |
| inset-px | inset: 1px; |
| inset-x-px | left: 1px; right: 1px; |
| inset-y-px | top: 1px; bottom: 1px; |
| start-px | inset-inline-start: 1px; |
| end-px | inset-inline-end: 1px; |
| top-px | top: 1px; |
| right-px | right: 1px; |
| bottom-px | bottom: 1px; |
| left-px | left: 1px; |
| inset-0.5 | inset: 0.125rem; /* 2px */ |
| inset-x-0.5 | left: 0.125rem; /* 2px / right: 0.125rem; / 2px */ |
| inset-y-0.5 | top: 0.125rem; /* 2px / bottom: 0.125rem; / 2px */ |
| start-0.5 | inset-inline-start: 0.125rem; /* 2px */ |
| end-0.5 | inset-inline-end: 0.125rem; /* 2px */ |
| top-0.5 | top: 0.125rem; /* 2px */ |
| right-0.5 | right: 0.125rem; /* 2px */ |
| bottom-0.5 | bottom: 0.125rem; /* 2px */ |
| left-0.5 | left: 0.125rem; /* 2px */ |
| inset-1 | inset: 0.25rem; /* 4px */ |
| inset-x-1 | left: 0.25rem; /* 4px / right: 0.25rem; / 4px */ |
| inset-y-1 | top: 0.25rem; /* 4px / bottom: 0.25rem; / 4px */ |
| start-1 | inset-inline-start: 0.25rem; /* 4px */ |
| end-1 | inset-inline-end: 0.25rem; /* 4px */ |
| top-1 | top: 0.25rem; /* 4px */ |
| right-1 | right: 0.25rem; /* 4px */ |
| bottom-1 | bottom: 0.25rem; /* 4px */ |
| left-1 | left: 0.25rem; /* 4px */ |
| inset-1.5 | inset: 0.375rem; /* 6px */ |
| inset-x-1.5 | left: 0.375rem; /* 6px / right: 0.375rem; / 6px */ |
| inset-y-1.5 | top: 0.375rem; /* 6px / bottom: 0.375rem; / 6px */ |
| start-1.5 | inset-inline-start: 0.375rem; /* 6px */ |
| end-1.5 | inset-inline-end: 0.375rem; /* 6px */ |
| top-1.5 | top: 0.375rem; /* 6px */ |
| right-1.5 | right: 0.375rem; /* 6px */ |
| bottom-1.5 | bottom: 0.375rem; /* 6px */ |
| left-1.5 | left: 0.375rem; /* 6px */ |
| inset-2 | inset: 0.5rem; /* 8px */ |
| inset-x-2 | left: 0.5rem; /* 8px / right: 0.5rem; / 8px */ |
| inset-y-2 | top: 0.5rem; /* 8px / bottom: 0.5rem; / 8px */ |
| start-2 | inset-inline-start: 0.5rem; /* 8px */ |
| end-2 | inset-inline-end: 0.5rem; /* 8px */ |
| top-2 | top: 0.5rem; /* 8px */ |
| right-2 | right: 0.5rem; /* 8px */ |
| bottom-2 | bottom: 0.5rem; /* 8px */ |
| left-2 | left: 0.5rem; /* 8px */ |
| inset-2.5 | inset: 0.625rem; /* 10px */ |
| inset-x-2.5 | left: 0.625rem; /* 10px / right: 0.625rem; / 10px */ |
| inset-y-2.5 | top: 0.625rem; /* 10px / bottom: 0.625rem; / 10px */ |
| start-2.5 | inset-inline-start: 0.625rem; /* 10px */ |
| end-2.5 | inset-inline-end: 0.625rem; /* 10px */ |
| top-2.5 | top: 0.625rem; /* 10px */ |
| right-2.5 | right: 0.625rem; /* 10px */ |
| bottom-2.5 | bottom: 0.625rem; /* 10px */ |
| left-2.5 | left: 0.625rem; /* 10px */ |
| inset-3 | inset: 0.75rem; /* 12px */ |
| inset-x-3 | left: 0.75rem; /* 12px / right: 0.75rem; / 12px */ |
| inset-y-3 | top: 0.75rem; /* 12px / bottom: 0.75rem; / 12px */ |
| start-3 | inset-inline-start: 0.75rem; /* 12px */ |
| end-3 | inset-inline-end: 0.75rem; /* 12px */ |
| top-3 | top: 0.75rem; /* 12px */ |
| right-3 | right: 0.75rem; /* 12px */ |
| bottom-3 | bottom: 0.75rem; /* 12px */ |
| left-3 | left: 0.75rem; /* 12px */ |
| inset-3.5 | inset: 0.875rem; /* 14px */ |
| inset-x-3.5 | left: 0.875rem; /* 14px / right: 0.875rem; / 14px */ |
| inset-y-3.5 | top: 0.875rem; /* 14px / bottom: 0.875rem; / 14px */ |
| start-3.5 | inset-inline-start: 0.875rem; /* 14px */ |
| end-3.5 | inset-inline-end: 0.875rem; /* 14px */ |
| top-3.5 | top: 0.875rem; /* 14px */ |
| right-3.5 | right: 0.875rem; /* 14px */ |
| bottom-3.5 | bottom: 0.875rem; /* 14px */ |
| left-3.5 | left: 0.875rem; /* 14px */ |
| inset-4 | inset: 1rem; /* 16px */ |
| inset-x-4 | left: 1rem; /* 16px / right: 1rem; / 16px */ |
| inset-y-4 | top: 1rem; /* 16px / bottom: 1rem; / 16px */ |
| start-4 | inset-inline-start: 1rem; /* 16px */ |
| end-4 | inset-inline-end: 1rem; /* 16px */ |
| top-4 | top: 1rem; /* 16px */ |
| right-4 | right: 1rem; /* 16px */ |
| bottom-4 | bottom: 1rem; /* 16px */ |
| left-4 | left: 1rem; /* 16px */ |
| inset-5 | inset: 1.25rem; /* 20px */ |
| inset-x-5 | left: 1.25rem; /* 20px / right: 1.25rem; / 20px */ |
| inset-y-5 | top: 1.25rem; /* 20px / bottom: 1.25rem; / 20px */ |
| start-5 | inset-inline-start: 1.25rem; /* 20px */ |
| end-5 | inset-inline-end: 1.25rem; /* 20px */ |
| top-5 | top: 1.25rem; /* 20px */ |
| right-5 | right: 1.25rem; /* 20px */ |
| bottom-5 | bottom: 1.25rem; /* 20px */ |
| left-5 | left: 1.25rem; /* 20px */ |
| inset-6 | inset: 1.5rem; /* 24px */ |
| inset-x-6 | left: 1.5rem; /* 24px / right: 1.5rem; / 24px */ |
| inset-y-6 | top: 1.5rem; /* 24px / bottom: 1.5rem; / 24px */ |
| start-6 | inset-inline-start: 1.5rem; /* 24px */ |
| end-6 | inset-inline-end: 1.5rem; /* 24px */ |
| top-6 | top: 1.5rem; /* 24px */ |
| right-6 | right: 1.5rem; /* 24px */ |
| bottom-6 | bottom: 1.5rem; /* 24px */ |
| left-6 | left: 1.5rem; /* 24px */ |
| inset-7 | inset: 1.75rem; /* 28px */ |
| inset-x-7 | left: 1.75rem; /* 28px / right: 1.75rem; / 28px */ |
| inset-y-7 | top: 1.75rem; /* 28px / bottom: 1.75rem; / 28px */ |
| start-7 | inset-inline-start: 1.75rem; /* 28px */ |
| end-7 | inset-inline-end: 1.75rem; /* 28px */ |
| top-7 | top: 1.75rem; /* 28px */ |
| right-7 | right: 1.75rem; /* 28px */ |
| bottom-7 | bottom: 1.75rem; /* 28px */ |
| left-7 | left: 1.75rem; /* 28px */ |
| inset-8 | inset: 2rem; /* 32px */ |
| inset-x-8 | left: 2rem; /* 32px / right: 2rem; / 32px */ |
| inset-y-8 | top: 2rem; /* 32px / bottom: 2rem; / 32px */ |
| start-8 | inset-inline-start: 2rem; /* 32px */ |
| end-8 | inset-inline-end: 2rem; /* 32px */ |
| top-8 | top: 2rem; /* 32px */ |
| right-8 | right: 2rem; /* 32px */ |
| bottom-8 | bottom: 2rem; /* 32px */ |
| left-8 | left: 2rem; /* 32px */ |
| inset-9 | inset: 2.25rem; /* 36px */ |
| inset-x-9 | left: 2.25rem; /* 36px / right: 2.25rem; / 36px */ |
| inset-y-9 | top: 2.25rem; /* 36px / bottom: 2.25rem; / 36px */ |
| start-9 | inset-inline-start: 2.25rem; /* 36px */ |
| end-9 | inset-inline-end: 2.25rem; /* 36px */ |
| top-9 | top: 2.25rem; /* 36px */ |
| right-9 | right: 2.25rem; /* 36px */ |
| bottom-9 | bottom: 2.25rem; /* 36px */ |
| left-9 | left: 2.25rem; /* 36px */ |
| inset-10 | inset: 2.5rem; /* 40px */ |
| inset-x-10 | left: 2.5rem; /* 40px / right: 2.5rem; / 40px */ |
| inset-y-10 | top: 2.5rem; /* 40px / bottom: 2.5rem; / 40px */ |
| start-10 | inset-inline-start: 2.5rem; /* 40px */ |
| end-10 | inset-inline-end: 2.5rem; /* 40px */ |
| top-10 | top: 2.5rem; /* 40px */ |
| right-10 | right: 2.5rem; /* 40px */ |
| bottom-10 | bottom: 2.5rem; /* 40px */ |
| left-10 | left: 2.5rem; /* 40px */ |
| inset-11 | inset: 2.75rem; /* 44px */ |
| inset-x-11 | left: 2.75rem; /* 44px / right: 2.75rem; / 44px */ |
| inset-y-11 | top: 2.75rem; /* 44px / bottom: 2.75rem; / 44px */ |
| start-11 | inset-inline-start: 2.75rem; /* 44px */ |
| end-11 | inset-inline-end: 2.75rem; /* 44px */ |
| top-11 | top: 2.75rem; /* 44px */ |
| right-11 | right: 2.75rem; /* 44px */ |
| bottom-11 | bottom: 2.75rem; /* 44px */ |
| left-11 | left: 2.75rem; /* 44px */ |
| inset-12 | inset: 3rem; /* 48px */ |
| inset-x-12 | left: 3rem; /* 48px / right: 3rem; / 48px */ |
| inset-y-12 | top: 3rem; /* 48px / bottom: 3rem; / 48px */ |
| start-12 | inset-inline-start: 3rem; /* 48px */ |
| end-12 | inset-inline-end: 3rem; /* 48px */ |
| top-12 | top: 3rem; /* 48px */ |
| right-12 | right: 3rem; /* 48px */ |
| bottom-12 | bottom: 3rem; /* 48px */ |
| left-12 | left: 3rem; /* 48px */ |
| inset-14 | inset: 3.5rem; /* 56px */ |
| inset-x-14 | left: 3.5rem; /* 56px / right: 3.5rem; / 56px */ |
| inset-y-14 | top: 3.5rem; /* 56px / bottom: 3.5rem; / 56px */ |
| start-14 | inset-inline-start: 3.5rem; /* 56px */ |
| end-14 | inset-inline-end: 3.5rem; /* 56px */ |
| top-14 | top: 3.5rem; /* 56px */ |
| right-14 | right: 3.5rem; /* 56px */ |
| bottom-14 | bottom: 3.5rem; /* 56px */ |
| left-14 | left: 3.5rem; /* 56px */ |
| inset-16 | inset: 4rem; /* 64px */ |
| inset-x-16 | left: 4rem; /* 64px / right: 4rem; / 64px */ |
| inset-y-16 | top: 4rem; /* 64px / bottom: 4rem; / 64px */ |
| start-16 | inset-inline-start: 4rem; /* 64px */ |
| end-16 | inset-inline-end: 4rem; /* 64px */ |
| top-16 | top: 4rem; /* 64px */ |
| right-16 | right: 4rem; /* 64px */ |
| bottom-16 | bottom: 4rem; /* 64px */ |
| left-16 | left: 4rem; /* 64px */ |
| inset-20 | inset: 5rem; /* 80px */ |
| inset-x-20 | left: 5rem; /* 80px / right: 5rem; / 80px */ |
| inset-y-20 | top: 5rem; /* 80px / bottom: 5rem; / 80px */ |
| start-20 | inset-inline-start: 5rem; /* 80px */ |
| end-20 | inset-inline-end: 5rem; /* 80px */ |
| top-20 | top: 5rem; /* 80px */ |
| right-20 | right: 5rem; /* 80px */ |
| bottom-20 | bottom: 5rem; /* 80px */ |
| left-20 | left: 5rem; /* 80px */ |
| inset-24 | inset: 6rem; /* 96px */ |
| inset-x-24 | left: 6rem; /* 96px / right: 6rem; / 96px */ |
| inset-y-24 | top: 6rem; /* 96px / bottom: 6rem; / 96px */ |
| start-24 | inset-inline-start: 6rem; /* 96px */ |
| end-24 | inset-inline-end: 6rem; /* 96px */ |
| top-24 | top: 6rem; /* 96px */ |
| right-24 | right: 6rem; /* 96px */ |
| bottom-24 | bottom: 6rem; /* 96px */ |
| left-24 | left: 6rem; /* 96px */ |
| inset-28 | inset: 7rem; /* 112px */ |
| inset-x-28 | left: 7rem; /* 112px / right: 7rem; / 112px */ |
| inset-y-28 | top: 7rem; /* 112px / bottom: 7rem; / 112px */ |
| start-28 | inset-inline-start: 7rem; /* 112px */ |
| end-28 | inset-inline-end: 7rem; /* 112px */ |
| top-28 | top: 7rem; /* 112px */ |
| right-28 | right: 7rem; /* 112px */ |
| bottom-28 | bottom: 7rem; /* 112px */ |
| left-28 | left: 7rem; /* 112px */ |
| inset-32 | inset: 8rem; /* 128px */ |
| inset-x-32 | left: 8rem; /* 128px / right: 8rem; / 128px */ |
| inset-y-32 | top: 8rem; /* 128px / bottom: 8rem; / 128px */ |
| start-32 | inset-inline-start: 8rem; /* 128px */ |
| end-32 | inset-inline-end: 8rem; /* 128px */ |
| top-32 | top: 8rem; /* 128px */ |
| right-32 | right: 8rem; /* 128px */ |
| bottom-32 | bottom: 8rem; /* 128px */ |
| left-32 | left: 8rem; /* 128px */ |
| inset-36 | inset: 9rem; /* 144px */ |
| inset-x-36 | left: 9rem; /* 144px / right: 9rem; / 144px */ |
| inset-y-36 | top: 9rem; /* 144px / bottom: 9rem; / 144px */ |
| start-36 | inset-inline-start: 9rem; /* 144px */ |
| end-36 | inset-inline-end: 9rem; /* 144px */ |
| top-36 | top: 9rem; /* 144px */ |
| right-36 | right: 9rem; /* 144px */ |
| bottom-36 | bottom: 9rem; /* 144px */ |
| left-36 | left: 9rem; /* 144px */ |
| inset-40 | inset: 10rem; /* 160px */ |
| inset-x-40 | left: 10rem; /* 160px / right: 10rem; / 160px */ |
| inset-y-40 | top: 10rem; /* 160px / bottom: 10rem; / 160px */ |
| start-40 | inset-inline-start: 10rem; /* 160px */ |
| end-40 | inset-inline-end: 10rem; /* 160px */ |
| top-40 | top: 10rem; /* 160px */ |
| right-40 | right: 10rem; /* 160px */ |
| bottom-40 | bottom: 10rem; /* 160px */ |
| left-40 | left: 10rem; /* 160px */ |
| inset-44 | inset: 11rem; /* 176px */ |
| inset-x-44 | left: 11rem; /* 176px / right: 11rem; / 176px */ |
| inset-y-44 | top: 11rem; /* 176px / bottom: 11rem; / 176px */ |
| start-44 | inset-inline-start: 11rem; /* 176px */ |
| end-44 | inset-inline-end: 11rem; /* 176px */ |
| top-44 | top: 11rem; /* 176px */ |
| right-44 | right: 11rem; /* 176px */ |
| bottom-44 | bottom: 11rem; /* 176px */ |
| left-44 | left: 11rem; /* 176px */ |
| inset-48 | inset: 12rem; /* 192px */ |
| inset-x-48 | left: 12rem; /* 192px / right: 12rem; / 192px */ |
| inset-y-48 | top: 12rem; /* 192px / bottom: 12rem; / 192px */ |
| start-48 | inset-inline-start: 12rem; /* 192px */ |
| end-48 | inset-inline-end: 12rem; /* 192px */ |
| top-48 | top: 12rem; /* 192px */ |
| right-48 | right: 12rem; /* 192px */ |
| bottom-48 | bottom: 12rem; /* 192px */ |
| left-48 | left: 12rem; /* 192px */ |
| inset-52 | inset: 13rem; /* 208px */ |
| inset-x-52 | left: 13rem; /* 208px / right: 13rem; / 208px */ |
| inset-y-52 | top: 13rem; /* 208px / bottom: 13rem; / 208px */ |
| start-52 | inset-inline-start: 13rem; /* 208px */ |
| end-52 | inset-inline-end: 13rem; /* 208px */ |
| top-52 | top: 13rem; /* 208px */ |
| right-52 | right: 13rem; /* 208px */ |
| bottom-52 | bottom: 13rem; /* 208px */ |
| left-52 | left: 13rem; /* 208px */ |
| inset-56 | inset: 14rem; /* 224px */ |
| inset-x-56 | left: 14rem; /* 224px / right: 14rem; / 224px */ |
| inset-y-56 | top: 14rem; /* 224px / bottom: 14rem; / 224px */ |
| start-56 | inset-inline-start: 14rem; /* 224px */ |
| end-56 | inset-inline-end: 14rem; /* 224px */ |
| top-56 | top: 14rem; /* 224px */ |
| right-56 | right: 14rem; /* 224px */ |
| bottom-56 | bottom: 14rem; /* 224px */ |
| left-56 | left: 14rem; /* 224px */ |
| inset-60 | inset: 15rem; /* 240px */ |
| inset-x-60 | left: 15rem; /* 240px / right: 15rem; / 240px */ |
| inset-y-60 | top: 15rem; /* 240px / bottom: 15rem; / 240px */ |
| start-60 | inset-inline-start: 15rem; /* 240px */ |
| end-60 | inset-inline-end: 15rem; /* 240px */ |
| top-60 | top: 15rem; /* 240px */ |
| right-60 | right: 15rem; /* 240px */ |
| bottom-60 | bottom: 15rem; /* 240px */ |
| left-60 | left: 15rem; /* 240px */ |
| inset-64 | inset: 16rem; /* 256px */ |
| inset-x-64 | left: 16rem; /* 256px / right: 16rem; / 256px */ |
| inset-y-64 | top: 16rem; /* 256px / bottom: 16rem; / 256px */ |
| start-64 | inset-inline-start: 16rem; /* 256px */ |
| end-64 | inset-inline-end: 16rem; /* 256px */ |
| top-64 | top: 16rem; /* 256px */ |
| right-64 | right: 16rem; /* 256px */ |
| bottom-64 | bottom: 16rem; /* 256px */ |
| left-64 | left: 16rem; /* 256px */ |
| inset-72 | inset: 18rem; /* 288px */ |
| inset-x-72 | left: 18rem; /* 288px / right: 18rem; / 288px */ |
| inset-y-72 | top: 18rem; /* 288px / bottom: 18rem; / 288px */ |
| start-72 | inset-inline-start: 18rem; /* 288px */ |
| end-72 | inset-inline-end: 18rem; /* 288px */ |
| top-72 | top: 18rem; /* 288px */ |
| right-72 | right: 18rem; /* 288px */ |
| bottom-72 | bottom: 18rem; /* 288px */ |
| left-72 | left: 18rem; /* 288px */ |
| inset-80 | inset: 20rem; /* 320px */ |
| inset-x-80 | left: 20rem; /* 320px / right: 20rem; / 320px */ |
| inset-y-80 | top: 20rem; /* 320px / bottom: 20rem; / 320px */ |
| start-80 | inset-inline-start: 20rem; /* 320px */ |
| end-80 | inset-inline-end: 20rem; /* 320px */ |
| top-80 | top: 20rem; /* 320px */ |
| right-80 | right: 20rem; /* 320px */ |
| bottom-80 | bottom: 20rem; /* 320px */ |
| left-80 | left: 20rem; /* 320px */ |
| inset-96 | inset: 24rem; /* 384px */ |
| inset-x-96 | left: 24rem; /* 384px / right: 24rem; / 384px */ |
| inset-y-96 | top: 24rem; /* 384px / bottom: 24rem; / 384px */ |
| start-96 | inset-inline-start: 24rem; /* 384px */ |
| end-96 | inset-inline-end: 24rem; /* 384px */ |
| top-96 | top: 24rem; /* 384px */ |
| right-96 | right: 24rem; /* 384px */ |
| bottom-96 | bottom: 24rem; /* 384px */ |
| left-96 | left: 24rem; /* 384px */ |
| inset-auto | inset: auto; |
| inset-1/2 | inset: 50%; |
| inset-1/3 | inset: 33.333333%; |
| inset-2/3 | inset: 66.666667%; |
| inset-1/4 | inset: 25%; |
| inset-2/4 | inset: 50%; |
| inset-3/4 | inset: 75%; |
| inset-full | inset: 100%; |
| inset-x-auto | left: auto; right: auto; |
| inset-x-1/2 | left: 50%; right: 50%; |
| inset-x-1/3 | left: 33.333333%; right: 33.333333%; |
| inset-x-2/3 | left: 66.666667%; right: 66.666667%; |
| inset-x-1/4 | left: 25%; right: 25%; |
| inset-x-2/4 | left: 50%; right: 50%; |
| inset-x-3/4 | left: 75%; right: 75%; |
| inset-x-full | left: 100%; right: 100%; |
| inset-y-auto | top: auto; bottom: auto; |
| inset-y-1/2 | top: 50%; bottom: 50%; |
| inset-y-1/3 | top: 33.333333%; bottom: 33.333333%; |
| inset-y-2/3 | top: 66.666667%; bottom: 66.666667%; |
| inset-y-1/4 | top: 25%; bottom: 25%; |
| inset-y-2/4 | top: 50%; bottom: 50%; |
| inset-y-3/4 | top: 75%; bottom: 75%; |
| inset-y-full | top: 100%; bottom: 100%; |
| start-auto | inset-inline-start: auto; |
| start-1/2 | inset-inline-start: 50%; |
| start-1/3 | inset-inline-start: 33.333333%; |
| start-2/3 | inset-inline-start: 66.666667%; |
| start-1/4 | inset-inline-start: 25%; |
| start-2/4 | inset-inline-start: 50%; |
| start-3/4 | inset-inline-start: 75%; |
| start-full | inset-inline-start: 100%; |
| end-auto | inset-inline-end: auto; |
| end-1/2 | inset-inline-end: 50%; |
| end-1/3 | inset-inline-end: 33.333333%; |
| end-2/3 | inset-inline-end: 66.666667%; |
| end-1/4 | inset-inline-end: 25%; |
| end-2/4 | inset-inline-end: 50%; |
| end-3/4 | inset-inline-end: 75%; |
| end-full | inset-inline-end: 100%; |
| top-auto | top: auto; |
| top-1/2 | top: 50%; |
| top-1/3 | top: 33.333333%; |
| top-2/3 | top: 66.666667%; |
| top-1/4 | top: 25%; |
| top-2/4 | top: 50%; |
| top-3/4 | top: 75%; |
| top-full | top: 100%; |
| right-auto | right: auto; |
| right-1/2 | right: 50%; |
| right-1/3 | right: 33.333333%; |
| right-2/3 | right: 66.666667%; |
| right-1/4 | right: 25%; |
| right-2/4 | right: 50%; |
| right-3/4 | right: 75%; |
| right-full | right: 100%; |
| bottom-auto | bottom: auto; |
| bottom-1/2 | bottom: 50%; |
| bottom-1/3 | bottom: 33.333333%; |
| bottom-2/3 | bottom: 66.666667%; |
| bottom-1/4 | bottom: 25%; |
| bottom-2/4 | bottom: 50%; |
| bottom-3/4 | bottom: 75%; |
| bottom-full | bottom: 100%; |
| left-auto | left: auto; |
| left-1/2 | left: 50%; |
| left-1/3 | left: 33.333333%; |
| left-2/3 | left: 66.666667%; |
| left-1/4 | left: 25%; |
| left-2/4 | left: 50%; |
| left-3/4 | left: 75%; |
| left-full | left: 100%; |
布局 - 可见性
| 类 | 对应的 CSS |
|---|---|
| visible | visibility: visible; |
| invisible | visibility: hidden; |
| collapse | visibility: collapse; |
布局 - 层级
| 类 | 对应的 CSS |
|---|---|
| z-0 | z-index: 0; |
| z-10 | z-index: 10; |
| z-20 | z-index: 20; |
| z-30 | z-index: 30; |
| z-40 | z-index: 40; |
| z-50 | z-index: 50; |
| z-auto | z-index: auto; |
Flex 布局 - Basis
| 类 | 对应的 CSS |
|---|---|
| basis-0 | flex-basis: 0px; |
| basis-1 | flex-basis: 0.25rem; /* 4px */ |
| basis-2 | flex-basis: 0.5rem; /* 8px */ |
| basis-3 | flex-basis: 0.75rem; /* 12px */ |
| basis-4 | flex-basis: 1rem; /* 16px */ |
| basis-5 | flex-basis: 1.25rem; /* 20px */ |
| basis-6 | flex-basis: 1.5rem; /* 24px */ |
| basis-7 | flex-basis: 1.75rem; /* 28px */ |
| basis-8 | flex-basis: 2rem; /* 32px */ |
| basis-9 | flex-basis: 2.25rem; /* 36px */ |
| basis-10 | flex-basis: 2.5rem; /* 40px */ |
| basis-11 | flex-basis: 2.75rem; /* 44px */ |
| basis-12 | flex-basis: 3rem; /* 48px */ |
| basis-14 | flex-basis: 3.5rem; /* 56px */ |
| basis-16 | flex-basis: 4rem; /* 64px */ |
| basis-20 | flex-basis: 5rem; /* 80px */ |
| basis-24 | flex-basis: 6rem; /* 96px */ |
| basis-28 | flex-basis: 7rem; /* 112px */ |
| basis-32 | flex-basis: 8rem; /* 128px */ |
| basis-36 | flex-basis: 9rem; /* 144px */ |
| basis-40 | flex-basis: 10rem; /* 160px */ |
| basis-44 | flex-basis: 11rem; /* 176px */ |
| basis-48 | flex-basis: 12rem; /* 192px */ |
| basis-52 | flex-basis: 13rem; /* 208px */ |
| basis-56 | flex-basis: 14rem; /* 224px */ |
| basis-60 | flex-basis: 15rem; /* 240px */ |
| basis-64 | flex-basis: 16rem; /* 256px */ |
| basis-72 | flex-basis: 18rem; /* 288px */ |
| basis-80 | flex-basis: 20rem; /* 320px */ |
| basis-96 | flex-basis: 24rem; /* 384px */ |
| basis-auto | flex-basis: auto; |
| basis-px | flex-basis: 1px; |
| basis-0.5 | flex-basis: 0.125rem; /* 2px */ |
| basis-1.5 | flex-basis: 0.375rem; /* 6px */ |
| basis-2.5 | flex-basis: 0.625rem; /* 10px */ |
| basis-3.5 | flex-basis: 0.875rem; /* 14px */ |
| basis-1/2 | flex-basis: 50%; |
| basis-1/3 | flex-basis: 33.333333%; |
| basis-2/3 | flex-basis: 66.666667%; |
| basis-1/4 | flex-basis: 25%; |
| basis-2/4 | flex-basis: 50%; |
| basis-3/4 | flex-basis: 75%; |
| basis-1/5 | flex-basis: 20%; |
| basis-2/5 | flex-basis: 40%; |
| basis-3/5 | flex-basis: 60%; |
| basis-4/5 | flex-basis: 80%; |
| basis-1/6 | flex-basis: 16.666667%; |
| basis-2/6 | flex-basis: 33.333333%; |
| basis-3/6 | flex-basis: 50%; |
| basis-4/6 | flex-basis: 66.666667%; |
| basis-5/6 | flex-basis: 83.333333%; |
| basis-1/12 | flex-basis: 8.333333%; |
| basis-2/12 | flex-basis: 16.666667%; |
| basis-3/12 | flex-basis: 25%; |
| basis-4/12 | flex-basis: 33.333333%; |
| basis-5/12 | flex-basis: 41.666667%; |
| basis-6/12 | flex-basis: 50%; |
| basis-7/12 | flex-basis: 58.333333%; |
| basis-8/12 | flex-basis: 66.666667%; |
| basis-9/12 | flex-basis: 75%; |
| basis-10/12 | flex-basis: 83.333333%; |
| basis-11/12 | flex-basis: 91.666667%; |
| basis-full | flex-basis: 100%; |
Flex 布局 - Flex 其他属性
| 类 | 对应的 CSS |
|---|---|
| flex-row | flex-direction: row; |
| flex-row-reverse | flex-direction: row-reverse; |
| flex-col | flex-direction: column; |
| flex-col-reverse | flex-direction: column-reverse; |
| flex-wrap | flex-wrap: wrap; |
| flex-wrap-reverse | flex-wrap: wrap-reverse; |
| flex-nowrap | flex-wrap: nowrap; |
| grow | flex-grow: 1; |
| grow-0 | flex-grow: 0; |
| shrink | flex-shrink: 1; |
| shrink-0 | flex-shrink: 0; |
Gird 布局 - 模板列
| 类 | 对应的 CSS |
|---|---|
| grid-cols-1 | grid-template-columns: repeat(1, minmax(0, 1fr)); |
| grid-cols-2 | grid-template-columns: repeat(2, minmax(0, 1fr)); |
| grid-cols-3 | grid-template-columns: repeat(3, minmax(0, 1fr)); |
| grid-cols-4 | grid-template-columns: repeat(4, minmax(0, 1fr)); |
| grid-cols-5 | grid-template-columns: repeat(5, minmax(0, 1fr)); |
| grid-cols-6 | grid-template-columns: repeat(6, minmax(0, 1fr)); |
| grid-cols-7 | grid-template-columns: repeat(7, minmax(0, 1fr)); |
| grid-cols-8 | grid-template-columns: repeat(8, minmax(0, 1fr)); |
| grid-cols-9 | grid-template-columns: repeat(9, minmax(0, 1fr)); |
| grid-cols-10 | grid-template-columns: repeat(10, minmax(0, 1fr)); |
| grid-cols-11 | grid-template-columns: repeat(11, minmax(0, 1fr)); |
| grid-cols-12 | grid-template-columns: repeat(12, minmax(0, 1fr)); |
| grid-cols-none | grid-template-columns: none; |
| grid-cols-subgrid | grid-template-columns: subgrid; |
Grid 布局 - 网格列开始/结束
| 类 | 对应的 CSS |
|---|---|
| col-auto | grid-column: auto; |
| col-span-1 | grid-column: span 1 / span 1; |
| col-span-2 | grid-column: span 2 / span 2; |
| col-span-3 | grid-column: span 3 / span 3; |
| col-span-4 | grid-column: span 4 / span 4; |
| col-span-5 | grid-column: span 5 / span 5; |
| col-span-6 | grid-column: span 6 / span 6; |
| col-span-7 | grid-column: span 7 / span 7; |
| col-span-8 | grid-column: span 8 / span 8; |
| col-span-9 | grid-column: span 9 / span 9; |
| col-span-10 | grid-column: span 10 / span 10; |
| col-span-11 | grid-column: span 11 / span 11; |
| col-span-12 | grid-column: span 12 / span 12; |
| col-span-full | grid-column: 1 / -1; |
| col-start-1 | grid-column-start: 1; |
| col-start-2 | grid-column-start: 2; |
| col-start-3 | grid-column-start: 3; |
| col-start-4 | grid-column-start: 4; |
| col-start-5 | grid-column-start: 5; |
| col-start-6 | grid-column-start: 6; |
| col-start-7 | grid-column-start: 7; |
| col-start-8 | grid-column-start: 8; |
| col-start-9 | grid-column-start: 9; |
| col-start-10 | grid-column-start: 10; |
| col-start-11 | grid-column-start: 11; |
| col-start-12 | grid-column-start: 12; |
| col-start-13 | grid-column-start: 13; |
| col-start-auto | grid-column-start: auto; |
| col-end-1 | grid-column-end: 1; |
| col-end-2 | grid-column-end: 2; |
| col-end-3 | grid-column-end: 3; |
| col-end-4 | grid-column-end: 4; |
| col-end-5 | grid-column-end: 5; |
| col-end-6 | grid-column-end: 6; |
| col-end-7 | grid-column-end: 7; |
| col-end-8 | grid-column-end: 8; |
| col-end-9 | grid-column-end: 9; |
| col-end-10 | grid-column-end: 10; |
| col-end-11 | grid-column-end: 11; |
| col-end-12 | grid-column-end: 12; |
| col-end-13 | grid-column-end: 13; |
| col-end-auto | grid-column-end: auto; |
Grid - 模板行
| 类 | 对应的 CSS |
|---|---|
| grid-rows-1 | grid-template-rows: repeat(1, minmax(0, 1fr)); |
| grid-rows-2 | grid-template-rows: repeat(2, minmax(0, 1fr)); |
| grid-rows-3 | grid-template-rows: repeat(3, minmax(0, 1fr)); |
| grid-rows-4 | grid-template-rows: repeat(4, minmax(0, 1fr)); |
| grid-rows-5 | grid-template-rows: repeat(5, minmax(0, 1fr)); |
| grid-rows-6 | grid-template-rows: repeat(6, minmax(0, 1fr)); |
| grid-rows-7 | grid-template-rows: repeat(7, minmax(0, 1fr)); |
| grid-rows-8 | grid-template-rows: repeat(8, minmax(0, 1fr)); |
| grid-rows-9 | grid-template-rows: repeat(9, minmax(0, 1fr)); |
| grid-rows-10 | grid-template-rows: repeat(10, minmax(0, 1fr)); |
| grid-rows-11 | grid-template-rows: repeat(11, minmax(0, 1fr)); |
| grid-rows-12 | grid-template-rows: repeat(12, minmax(0, 1fr)); |
| grid-rows-none | grid-template-rows: none; |
| grid-rows-subgrid | grid-template-rows: subgrid; |
Grid - 表格开始 / 结束
| 类 | 对应的 CSS |
|---|---|
| row-auto | grid-row: auto; |
| row-span-1 | grid-row: span 1 / span 1; |
| row-span-2 | grid-row: span 2 / span 2; |
| row-span-3 | grid-row: span 3 / span 3; |
| row-span-4 | grid-row: span 4 / span 4; |
| row-span-5 | grid-row: span 5 / span 5; |
| row-span-6 | grid-row: span 6 / span 6; |
| row-span-7 | grid-row: span 7 / span 7; |
| row-span-8 | grid-row: span 8 / span 8; |
| row-span-9 | grid-row: span 9 / span 9; |
| row-span-10 | grid-row: span 10 / span 10; |
| row-span-11 | grid-row: span 11 / span 11; |
| row-span-12 | grid-row: span 12 / span 12; |
| row-span-full | grid-row: 1 / -1; |
| row-start-1 | grid-row-start: 1; |
| row-start-2 | grid-row-start: 2; |
| row-start-3 | grid-row-start: 3; |
| row-start-4 | grid-row-start: 4; |
| row-start-5 | grid-row-start: 5; |
| row-start-6 | grid-row-start: 6; |
| row-start-7 | grid-row-start: 7; |
| row-start-8 | grid-row-start: 8; |
| row-start-9 | grid-row-start: 9; |
| row-start-10 | grid-row-start: 10; |
| row-start-11 | grid-row-start: 11; |
| row-start-12 | grid-row-start: 12; |
| row-start-13 | grid-row-start: 13; |
| row-start-auto | grid-row-start: auto; |
| row-end-1 | grid-row-end: 1; |
| row-end-2 | grid-row-end: 2; |
| row-end-3 | grid-row-end: 3; |
| row-end-4 | grid-row-end: 4; |
| row-end-5 | grid-row-end: 5; |
| row-end-6 | grid-row-end: 6; |
| row-end-7 | grid-row-end: 7; |
| row-end-8 | grid-row-end: 8; |
| row-end-9 | grid-row-end: 9; |
| row-end-10 | grid-row-end: 10; |
| row-end-11 | grid-row-end: 11; |
| row-end-12 | grid-row-end: 12; |
| row-end-13 | grid-row-end: 13; |
| row-end-auto | grid-row-end: auto; |
Flex & Grid - 间隙
| 类 | 对应的 CSS |
|---|---|
| gap-0 | gap: 0px; |
| gap-x-0 | column-gap: 0px; |
| gap-y-0 | row-gap: 0px; |
| gap-px | gap: 1px; |
| gap-x-px | column-gap: 1px; |
| gap-y-px | row-gap: 1px; |
| gap-0.5 | gap: 0.125rem; /* 2px */ |
| gap-x-0.5 | column-gap: 0.125rem; /* 2px */ |
| gap-y-0.5 | row-gap: 0.125rem; /* 2px */ |
| gap-1 | gap: 0.25rem; /* 4px */ |
| gap-x-1 | column-gap: 0.25rem; /* 4px */ |
| gap-y-1 | row-gap: 0.25rem; /* 4px */ |
| gap-1.5 | gap: 0.375rem; /* 6px */ |
| gap-x-1.5 | column-gap: 0.375rem; /* 6px */ |
| gap-y-1.5 | row-gap: 0.375rem; /* 6px */ |
| gap-2 | gap: 0.5rem; /* 8px */ |
| gap-x-2 | column-gap: 0.5rem; /* 8px */ |
| gap-y-2 | row-gap: 0.5rem; /* 8px */ |
| gap-2.5 | gap: 0.625rem; /* 10px */ |
| gap-x-2.5 | column-gap: 0.625rem; /* 10px */ |
| gap-y-2.5 | row-gap: 0.625rem; /* 10px */ |
| gap-3 | gap: 0.75rem; /* 12px */ |
| gap-x-3 | column-gap: 0.75rem; /* 12px */ |
| gap-y-3 | row-gap: 0.75rem; /* 12px */ |
| gap-3.5 | gap: 0.875rem; /* 14px */ |
| gap-x-3.5 | column-gap: 0.875rem; /* 14px */ |
| gap-y-3.5 | row-gap: 0.875rem; /* 14px */ |
| gap-4 | gap: 1rem; /* 16px */ |
| gap-x-4 | column-gap: 1rem; /* 16px */ |
| gap-y-4 | row-gap: 1rem; /* 16px */ |
| gap-5 | gap: 1.25rem; /* 20px */ |
| gap-x-5 | column-gap: 1.25rem; /* 20px */ |
| gap-y-5 | row-gap: 1.25rem; /* 20px */ |
| gap-6 | gap: 1.5rem; /* 24px */ |
| gap-x-6 | column-gap: 1.5rem; /* 24px */ |
| gap-y-6 | row-gap: 1.5rem; /* 24px */ |
| gap-7 | gap: 1.75rem; /* 28px */ |
| gap-x-7 | column-gap: 1.75rem; /* 28px */ |
| gap-y-7 | row-gap: 1.75rem; /* 28px */ |
| gap-8 | gap: 2rem; /* 32px */ |
| gap-x-8 | column-gap: 2rem; /* 32px */ |
| gap-y-8 | row-gap: 2rem; /* 32px */ |
| gap-9 | gap: 2.25rem; /* 36px */ |
| gap-x-9 | column-gap: 2.25rem; /* 36px */ |
| gap-y-9 | row-gap: 2.25rem; /* 36px */ |
| gap-10 | gap: 2.5rem; /* 40px */ |
| gap-x-10 | column-gap: 2.5rem; /* 40px */ |
| gap-y-10 | row-gap: 2.5rem; /* 40px */ |
| gap-11 | gap: 2.75rem; /* 44px */ |
| gap-x-11 | column-gap: 2.75rem; /* 44px */ |
| gap-y-11 | row-gap: 2.75rem; /* 44px */ |
| gap-12 | gap: 3rem; /* 48px */ |
| gap-x-12 | column-gap: 3rem; /* 48px */ |
| gap-y-12 | row-gap: 3rem; /* 48px */ |
| gap-14 | gap: 3.5rem; /* 56px */ |
| gap-x-14 | column-gap: 3.5rem; /* 56px */ |
| gap-y-14 | row-gap: 3.5rem; /* 56px */ |
| gap-16 | gap: 4rem; /* 64px */ |
| gap-x-16 | column-gap: 4rem; /* 64px */ |
| gap-y-16 | row-gap: 4rem; /* 64px */ |
| gap-20 | gap: 5rem; /* 80px */ |
| gap-x-20 | column-gap: 5rem; /* 80px */ |
| gap-y-20 | row-gap: 5rem; /* 80px */ |
| gap-24 | gap: 6rem; /* 96px */ |
| gap-x-24 | column-gap: 6rem; /* 96px */ |
| gap-y-24 | row-gap: 6rem; /* 96px */ |
| gap-28 | gap: 7rem; /* 112px */ |
| gap-x-28 | column-gap: 7rem; /* 112px */ |
| gap-y-28 | row-gap: 7rem; /* 112px */ |
| gap-32 | gap: 8rem; /* 128px */ |
| gap-x-32 | column-gap: 8rem; /* 128px */ |
| gap-y-32 | row-gap: 8rem; /* 128px */ |
| gap-36 | gap: 9rem; /* 144px */ |
| gap-x-36 | column-gap: 9rem; /* 144px */ |
| gap-y-36 | row-gap: 9rem; /* 144px */ |
| gap-40 | gap: 10rem; /* 160px */ |
| gap-x-40 | column-gap: 10rem; /* 160px */ |
| gap-y-40 | row-gap: 10rem; /* 160px */ |
| gap-44 | gap: 11rem; /* 176px */ |
| gap-x-44 | column-gap: 11rem; /* 176px */ |
| gap-y-44 | row-gap: 11rem; /* 176px */ |
| gap-48 | gap: 12rem; /* 192px */ |
| gap-x-48 | column-gap: 12rem; /* 192px */ |
| gap-y-48 | row-gap: 12rem; /* 192px */ |
| gap-52 | gap: 13rem; /* 208px */ |
| gap-x-52 | column-gap: 13rem; /* 208px */ |
| gap-y-52 | row-gap: 13rem; /* 208px */ |
| gap-56 | gap: 14rem; /* 224px */ |
| gap-x-56 | column-gap: 14rem; /* 224px */ |
| gap-y-56 | row-gap: 14rem; /* 224px */ |
| gap-60 | gap: 15rem; /* 240px */ |
| gap-x-60 | column-gap: 15rem; /* 240px */ |
| gap-y-60 | row-gap: 15rem; /* 240px */ |
| gap-64 | gap: 16rem; /* 256px */ |
| gap-x-64 | column-gap: 16rem; /* 256px */ |
| gap-y-64 | row-gap: 16rem; /* 256px */ |
| gap-72 | gap: 18rem; /* 288px */ |
| gap-x-72 | column-gap: 18rem; /* 288px */ |
| gap-y-72 | row-gap: 18rem; /* 288px */ |
| gap-80 | gap: 20rem; /* 320px */ |
| gap-x-80 | column-gap: 20rem; /* 320px */ |
| gap-y-80 | row-gap: 20rem; /* 320px */ |
| gap-96 | gap: 24rem; /* 384px */ |
| gap-x-96 | column-gap: 24rem; /* 384px */ |
| gap-y-96 | row-gap: 24rem; /* 384px */ |
Flex & Grid - 调整内容和项目
| 类 | 对应的 CSS |
|---|---|
| justify-normal | justify-content: normal; |
| justify-start | justify-content: flex-start; |
| justify-end | justify-content: flex-end; |
| justify-center | justify-content: center; |
| justify-between | justify-content: space-between; |
| justify-around | justify-content: space-around; |
| justify-evenly | justify-content: space-evenly; |
| justify-stretch | justify-content: stretch; |
| justify-items-start | justify-items: start; |
| justify-items-end | justify-items: end; |
| justify-items-center | justify-items: center; |
| justify-items-stretch | justify-items: stretch; |
| justify-self-auto | justify-self: auto; |
| justify-self-start | justify-self: start; |
| justify-self-end | justify-self: end; |
| justify-self-center | justify-self: center; |
| justify-self-stretch | justify-self: stretch; |
Flex & Grid - 对齐
| 类 | 对应的 CSS |
|---|---|
| content-normal | align-content: normal; |
| content-center | align-content: center; |
| content-start | align-content: flex-start; |
| content-end | align-content: flex-end; |
| content-between | align-content: space-between; |
| content-around | align-content: space-around; |
| content-evenly | align-content: space-evenly; |
| content-baseline | align-content: baseline; |
| content-stretch | align-content: stretch; |
| items-start | align-items: flex-start; |
| items-end | align-items: flex-end; |
| items-center | align-items: center; |
| items-baseline | align-items: baseline; |
| items-stretch | align-items: stretch; |
| self-auto | align-self: auto; |
| self-start | align-self: flex-start; |
| self-end | align-self: flex-end; |
| self-center | align-self: center; |
| self-stretch | align-self: stretch; |
| self-baseline | align-self: baseline; |
Flex & Grid - 放置
| 类 | 对应的 CSS |
|---|---|
| place-items-start | place-items: start; |
| place-items-end | place-items: end; |
| place-items-center | place-items: center; |
| place-items-baseline | place-items: baseline; |
| place-items-stretch | place-items: stretch; |
| place-content-center | place-content: center; |
| place-content-start | place-content: start; |
| place-content-end | place-content: end; |
| place-content-between | place-content: space-between; |
| place-content-around | place-content: space-around; |
| place-content-evenly | place-content: space-evenly; |
| place-content-baseline | place-content: baseline; |
| place-content-stretch | place-content: stretch; |
| place-self-auto | place-self: auto; |
| place-self-start | place-self: start; |
| place-self-end | place-self: end; |
| place-self-center | place-self: center; |
| place-self-stretch | place-self: stretch; |
间距 - 填充
| 类 | 对应的 CSS |
|---|---|
| p-0 | padding: 0px; |
| px-0 | padding-left: 0px; padding-right: 0px; |
| py-0 | padding-top: 0px; padding-bottom: 0px; |
| ps-0 | padding-inline-start: 0px; |
| pe-0 | padding-inline-end: 0px; |
| pt-0 | padding-top: 0px; |
| pr-0 | padding-right: 0px; |
| pb-0 | padding-bottom: 0px; |
| pl-0 | padding-left: 0px; |
| p-px | padding: 1px; |
| px-px | padding-left: 1px; padding-right: 1px; |
| py-px | padding-top: 1px; padding-bottom: 1px; |
| ps-px | padding-inline-start: 1px; |
| pe-px | padding-inline-end: 1px; |
| pt-px | padding-top: 1px; |
| pr-px | padding-right: 1px; |
| pb-px | padding-bottom: 1px; |
| pl-px | padding-left: 1px; |
| p-0.5 | padding: 0.125rem; /* 2px */ |
| px-0.5 | padding-left: 0.125rem; /* 2px / padding-right: 0.125rem; / 2px */ |
| py-0.5 | padding-top: 0.125rem; /* 2px / padding-bottom: 0.125rem; / 2px */ |
| ps-0.5 | padding-inline-start: 0.125rem; /* 2px */ |
| pe-0.5 | padding-inline-end: 0.125rem; /* 2px */ |
| pt-0.5 | padding-top: 0.125rem; /* 2px */ |
| pr-0.5 | padding-right: 0.125rem; /* 2px */ |
| pb-0.5 | padding-bottom: 0.125rem; /* 2px */ |
| pl-0.5 | padding-left: 0.125rem; /* 2px */ |
| p-1 | padding: 0.25rem; /* 4px */ |
| px-1 | padding-left: 0.25rem; /* 4px / padding-right: 0.25rem; / 4px */ |
| py-1 | padding-top: 0.25rem; /* 4px / padding-bottom: 0.25rem; / 4px */ |
| ps-1 | padding-inline-start: 0.25rem; /* 4px */ |
| pe-1 | padding-inline-end: 0.25rem; /* 4px */ |
| pt-1 | padding-top: 0.25rem; /* 4px */ |
| pr-1 | padding-right: 0.25rem; /* 4px */ |
| pb-1 | padding-bottom: 0.25rem; /* 4px */ |
| pl-1 | padding-left: 0.25rem; /* 4px */ |
| p-1.5 | padding: 0.375rem; /* 6px */ |
| px-1.5 | padding-left: 0.375rem; /* 6px / padding-right: 0.375rem; / 6px */ |
| py-1.5 | padding-top: 0.375rem; /* 6px / padding-bottom: 0.375rem; / 6px */ |
| ps-1.5 | padding-inline-start: 0.375rem; /* 6px */ |
| pe-1.5 | padding-inline-end: 0.375rem; /* 6px */ |
| pt-1.5 | padding-top: 0.375rem; /* 6px */ |
| pr-1.5 | padding-right: 0.375rem; /* 6px */ |
| pb-1.5 | padding-bottom: 0.375rem; /* 6px */ |
| pl-1.5 | padding-left: 0.375rem; /* 6px */ |
| p-2 | padding: 0.5rem; /* 8px */ |
| px-2 | padding-left: 0.5rem; /* 8px / padding-right: 0.5rem; / 8px */ |
| py-2 | padding-top: 0.5rem; /* 8px / padding-bottom: 0.5rem; / 8px */ |
| ps-2 | padding-inline-start: 0.5rem; /* 8px */ |
| pe-2 | padding-inline-end: 0.5rem; /* 8px */ |
| pt-2 | padding-top: 0.5rem; /* 8px */ |
| pr-2 | padding-right: 0.5rem; /* 8px */ |
| pb-2 | padding-bottom: 0.5rem; /* 8px */ |
| pl-2 | padding-left: 0.5rem; /* 8px */ |
| p-2.5 | padding: 0.625rem; /* 10px */ |
| px-2.5 | padding-left: 0.625rem; /* 10px / padding-right: 0.625rem; / 10px */ |
| py-2.5 | padding-top: 0.625rem; /* 10px / padding-bottom: 0.625rem; / 10px */ |
| ps-2.5 | padding-inline-start: 0.625rem; /* 10px */ |
| pe-2.5 | padding-inline-end: 0.625rem; /* 10px */ |
| pt-2.5 | padding-top: 0.625rem; /* 10px */ |
| pr-2.5 | padding-right: 0.625rem; /* 10px */ |
| pb-2.5 | padding-bottom: 0.625rem; /* 10px */ |
| pl-2.5 | padding-left: 0.625rem; /* 10px */ |
| p-3 | padding: 0.75rem; /* 12px */ |
| px-3 | padding-left: 0.75rem; /* 12px / padding-right: 0.75rem; / 12px */ |
| py-3 | padding-top: 0.75rem; /* 12px / padding-bottom: 0.75rem; / 12px */ |
| ps-3 | padding-inline-start: 0.75rem; /* 12px */ |
| pe-3 | padding-inline-end: 0.75rem; /* 12px */ |
| pt-3 | padding-top: 0.75rem; /* 12px */ |
| pr-3 | padding-right: 0.75rem; /* 12px */ |
| pb-3 | padding-bottom: 0.75rem; /* 12px */ |
| pl-3 | padding-left: 0.75rem; /* 12px */ |
| p-3.5 | padding: 0.875rem; /* 14px */ |
| px-3.5 | padding-left: 0.875rem; /* 14px / padding-right: 0.875rem; / 14px */ |
| py-3.5 | padding-top: 0.875rem; /* 14px / padding-bottom: 0.875rem; / 14px */ |
| ps-3.5 | padding-inline-start: 0.875rem; /* 14px */ |
| pe-3.5 | padding-inline-end: 0.875rem; /* 14px */ |
| pt-3.5 | padding-top: 0.875rem; /* 14px */ |
| pr-3.5 | padding-right: 0.875rem; /* 14px */ |
| pb-3.5 | padding-bottom: 0.875rem; /* 14px */ |
| pl-3.5 | padding-left: 0.875rem; /* 14px */ |
| p-4 | padding: 1rem; /* 16px */ |
| px-4 | padding-left: 1rem; /* 16px / padding-right: 1rem; / 16px */ |
| py-4 | padding-top: 1rem; /* 16px / padding-bottom: 1rem; / 16px */ |
| ps-4 | padding-inline-start: 1rem; /* 16px */ |
| pe-4 | padding-inline-end: 1rem; /* 16px */ |
| pt-4 | padding-top: 1rem; /* 16px */ |
| pr-4 | padding-right: 1rem; /* 16px */ |
| pb-4 | padding-bottom: 1rem; /* 16px */ |
| pl-4 | padding-left: 1rem; /* 16px */ |
| p-5 | padding: 1.25rem; /* 20px */ |
| px-5 | padding-left: 1.25rem; /* 20px / padding-right: 1.25rem; / 20px */ |
| py-5 | padding-top: 1.25rem; /* 20px / padding-bottom: 1.25rem; / 20px */ |
| ps-5 | padding-inline-start: 1.25rem; /* 20px */ |
| pe-5 | padding-inline-end: 1.25rem; /* 20px */ |
| pt-5 | padding-top: 1.25rem; /* 20px */ |
| pr-5 | padding-right: 1.25rem; /* 20px */ |
| pb-5 | padding-bottom: 1.25rem; /* 20px */ |
| pl-5 | padding-left: 1.25rem; /* 20px */ |
| p-6 | padding: 1.5rem; /* 24px */ |
| px-6 | padding-left: 1.5rem; /* 24px / padding-right: 1.5rem; / 24px */ |
| py-6 | padding-top: 1.5rem; /* 24px / padding-bottom: 1.5rem; / 24px */ |
| ps-6 | padding-inline-start: 1.5rem; /* 24px */ |
| pe-6 | padding-inline-end: 1.5rem; /* 24px */ |
| pt-6 | padding-top: 1.5rem; /* 24px */ |
| pr-6 | padding-right: 1.5rem; /* 24px */ |
| pb-6 | padding-bottom: 1.5rem; /* 24px */ |
| pl-6 | padding-left: 1.5rem; /* 24px */ |
| p-7 | padding: 1.75rem; /* 28px */ |
| px-7 | padding-left: 1.75rem; /* 28px / padding-right: 1.75rem; / 28px */ |
| py-7 | padding-top: 1.75rem; /* 28px / padding-bottom: 1.75rem; / 28px */ |
| ps-7 | padding-inline-start: 1.75rem; /* 28px */ |
| pe-7 | padding-inline-end: 1.75rem; /* 28px */ |
| pt-7 | padding-top: 1.75rem; /* 28px */ |
| pr-7 | padding-right: 1.75rem; /* 28px */ |
| pb-7 | padding-bottom: 1.75rem; /* 28px */ |
| pl-7 | padding-left: 1.75rem; /* 28px */ |
| p-8 | padding: 2rem; /* 32px */ |
| px-8 | padding-left: 2rem; /* 32px / padding-right: 2rem; / 32px */ |
| py-8 | padding-top: 2rem; /* 32px / padding-bottom: 2rem; / 32px */ |
| ps-8 | padding-inline-start: 2rem; /* 32px */ |
| pe-8 | padding-inline-end: 2rem; /* 32px */ |
| pt-8 | padding-top: 2rem; /* 32px */ |
| pr-8 | padding-right: 2rem; /* 32px */ |
| pb-8 | padding-bottom: 2rem; /* 32px */ |
| pl-8 | padding-left: 2rem; /* 32px */ |
| p-9 | padding: 2.25rem; /* 36px */ |
| px-9 | padding-left: 2.25rem; /* 36px / padding-right: 2.25rem; / 36px */ |
| py-9 | padding-top: 2.25rem; /* 36px / padding-bottom: 2.25rem; / 36px */ |
| ps-9 | padding-inline-start: 2.25rem; /* 36px */ |
| pe-9 | padding-inline-end: 2.25rem; /* 36px */ |
| pt-9 | padding-top: 2.25rem; /* 36px */ |
| pr-9 | padding-right: 2.25rem; /* 36px */ |
| pb-9 | padding-bottom: 2.25rem; /* 36px */ |
| pl-9 | padding-left: 2.25rem; /* 36px */ |
| p-10 | padding: 2.5rem; /* 40px */ |
| px-10 | padding-left: 2.5rem; /* 40px / padding-right: 2.5rem; / 40px */ |
| py-10 | padding-top: 2.5rem; /* 40px / padding-bottom: 2.5rem; / 40px */ |
| ps-10 | padding-inline-start: 2.5rem; /* 40px */ |
| pe-10 | padding-inline-end: 2.5rem; /* 40px */ |
| pt-10 | padding-top: 2.5rem; /* 40px */ |
| pr-10 | padding-right: 2.5rem; /* 40px */ |
| pb-10 | padding-bottom: 2.5rem; /* 40px */ |
| pl-10 | padding-left: 2.5rem; /* 40px */ |
| p-11 | padding: 2.75rem; /* 44px */ |
| px-11 | padding-left: 2.75rem; /* 44px / padding-right: 2.75rem; / 44px */ |
| py-11 | padding-top: 2.75rem; /* 44px / padding-bottom: 2.75rem; / 44px */ |
| ps-11 | padding-inline-start: 2.75rem; /* 44px */ |
| pe-11 | padding-inline-end: 2.75rem; /* 44px */ |
| pt-11 | padding-top: 2.75rem; /* 44px */ |
| pr-11 | padding-right: 2.75rem; /* 44px */ |
| pb-11 | padding-bottom: 2.75rem; /* 44px */ |
| pl-11 | padding-left: 2.75rem; /* 44px */ |
| p-12 | padding: 3rem; /* 48px */ |
| px-12 | padding-left: 3rem; /* 48px / padding-right: 3rem; / 48px */ |
| py-12 | padding-top: 3rem; /* 48px / padding-bottom: 3rem; / 48px */ |
| ps-12 | padding-inline-start: 3rem; /* 48px */ |
| pe-12 | padding-inline-end: 3rem; /* 48px */ |
| pt-12 | padding-top: 3rem; /* 48px */ |
| pr-12 | padding-right: 3rem; /* 48px */ |
| pb-12 | padding-bottom: 3rem; /* 48px */ |
| pl-12 | padding-left: 3rem; /* 48px */ |
| p-14 | padding: 3.5rem; /* 56px */ |
| px-14 | padding-left: 3.5rem; /* 56px / padding-right: 3.5rem; / 56px */ |
| py-14 | padding-top: 3.5rem; /* 56px / padding-bottom: 3.5rem; / 56px */ |
| ps-14 | padding-inline-start: 3.5rem; /* 56px */ |
| pe-14 | padding-inline-end: 3.5rem; /* 56px */ |
| pt-14 | padding-top: 3.5rem; /* 56px */ |
| pr-14 | padding-right: 3.5rem; /* 56px */ |
| pb-14 | padding-bottom: 3.5rem; /* 56px */ |
| pl-14 | padding-left: 3.5rem; /* 56px */ |
| p-16 | padding: 4rem; /* 64px */ |
| px-16 | padding-left: 4rem; /* 64px / padding-right: 4rem; / 64px */ |
| py-16 | padding-top: 4rem; /* 64px / padding-bottom: 4rem; / 64px */ |
| ps-16 | padding-inline-start: 4rem; /* 64px */ |
| pe-16 | padding-inline-end: 4rem; /* 64px */ |
| pt-16 | padding-top: 4rem; /* 64px */ |
| pr-16 | padding-right: 4rem; /* 64px */ |
| pb-16 | padding-bottom: 4rem; /* 64px */ |
| pl-16 | padding-left: 4rem; /* 64px */ |
| p-20 | padding: 5rem; /* 80px */ |
| px-20 | padding-left: 5rem; /* 80px / padding-right: 5rem; / 80px */ |
| py-20 | padding-top: 5rem; /* 80px / padding-bottom: 5rem; / 80px */ |
| ps-20 | padding-inline-start: 5rem; /* 80px */ |
| pe-20 | padding-inline-end: 5rem; /* 80px */ |
| pt-20 | padding-top: 5rem; /* 80px */ |
| pr-20 | padding-right: 5rem; /* 80px */ |
| pb-20 | padding-bottom: 5rem; /* 80px */ |
| pl-20 | padding-left: 5rem; /* 80px */ |
| p-24 | padding: 6rem; /* 96px */ |
| px-24 | padding-left: 6rem; /* 96px / padding-right: 6rem; / 96px */ |
| py-24 | padding-top: 6rem; /* 96px / padding-bottom: 6rem; / 96px */ |
| ps-24 | padding-inline-start: 6rem; /* 96px */ |
| pe-24 | padding-inline-end: 6rem; /* 96px */ |
| pt-24 | padding-top: 6rem; /* 96px */ |
| pr-24 | padding-right: 6rem; /* 96px */ |
| pb-24 | padding-bottom: 6rem; /* 96px */ |
| pl-24 | padding-left: 6rem; /* 96px */ |
| p-28 | padding: 7rem; /* 112px */ |
| px-28 | padding-left: 7rem; /* 112px / padding-right: 7rem; / 112px */ |
| py-28 | padding-top: 7rem; /* 112px / padding-bottom: 7rem; / 112px */ |
| ps-28 | padding-inline-start: 7rem; /* 112px */ |
| pe-28 | padding-inline-end: 7rem; /* 112px */ |
| pt-28 | padding-top: 7rem; /* 112px */ |
| pr-28 | padding-right: 7rem; /* 112px */ |
| pb-28 | padding-bottom: 7rem; /* 112px */ |
| pl-28 | padding-left: 7rem; /* 112px */ |
| p-32 | padding: 8rem; /* 128px */ |
| px-32 | padding-left: 8rem; /* 128px / padding-right: 8rem; / 128px */ |
| py-32 | padding-top: 8rem; /* 128px / padding-bottom: 8rem; / 128px */ |
| ps-32 | padding-inline-start: 8rem; /* 128px */ |
| pe-32 | padding-inline-end: 8rem; /* 128px */ |
| pt-32 | padding-top: 8rem; /* 128px */ |
| pr-32 | padding-right: 8rem; /* 128px */ |
| pb-32 | padding-bottom: 8rem; /* 128px */ |
| pl-32 | padding-left: 8rem; /* 128px */ |
| p-36 | padding: 9rem; /* 144px */ |
| px-36 | padding-left: 9rem; /* 144px / padding-right: 9rem; / 144px */ |
| py-36 | padding-top: 9rem; /* 144px / padding-bottom: 9rem; / 144px */ |
| ps-36 | padding-inline-start: 9rem; /* 144px */ |
| pe-36 | padding-inline-end: 9rem; /* 144px */ |
| pt-36 | padding-top: 9rem; /* 144px */ |
| pr-36 | padding-right: 9rem; /* 144px */ |
| pb-36 | padding-bottom: 9rem; /* 144px */ |
| pl-36 | padding-left: 9rem; /* 144px */ |
| p-40 | padding: 10rem; /* 160px */ |
| px-40 | padding-left: 10rem; /* 160px / padding-right: 10rem; / 160px */ |
| py-40 | padding-top: 10rem; /* 160px / padding-bottom: 10rem; / 160px */ |
| ps-40 | padding-inline-start: 10rem; /* 160px */ |
| pe-40 | padding-inline-end: 10rem; /* 160px */ |
| pt-40 | padding-top: 10rem; /* 160px */ |
| pr-40 | padding-right: 10rem; /* 160px */ |
| pb-40 | padding-bottom: 10rem; /* 160px */ |
| pl-40 | padding-left: 10rem; /* 160px */ |
| p-44 | padding: 11rem; /* 176px */ |
| px-44 | padding-left: 11rem; /* 176px / padding-right: 11rem; / 176px */ |
| py-44 | padding-top: 11rem; /* 176px / padding-bottom: 11rem; / 176px */ |
| ps-44 | padding-inline-start: 11rem; /* 176px */ |
| pe-44 | padding-inline-end: 11rem; /* 176px */ |
| pt-44 | padding-top: 11rem; /* 176px */ |
| pr-44 | padding-right: 11rem; /* 176px */ |
| pb-44 | padding-bottom: 11rem; /* 176px */ |
| pl-44 | padding-left: 11rem; /* 176px */ |
| p-48 | padding: 12rem; /* 192px */ |
| px-48 | padding-left: 12rem; /* 192px / padding-right: 12rem; / 192px */ |
| py-48 | padding-top: 12rem; /* 192px / padding-bottom: 12rem; / 192px */ |
| ps-48 | padding-inline-start: 12rem; /* 192px */ |
| pe-48 | padding-inline-end: 12rem; /* 192px */ |
| pt-48 | padding-top: 12rem; /* 192px */ |
| pr-48 | padding-right: 12rem; /* 192px */ |
| pb-48 | padding-bottom: 12rem; /* 192px */ |
| pl-48 | padding-left: 12rem; /* 192px */ |
| p-52 | padding: 13rem; /* 208px */ |
| px-52 | padding-left: 13rem; /* 208px / padding-right: 13rem; / 208px */ |
| py-52 | padding-top: 13rem; /* 208px / padding-bottom: 13rem; / 208px */ |
| ps-52 | padding-inline-start: 13rem; /* 208px */ |
| pe-52 | padding-inline-end: 13rem; /* 208px */ |
| pt-52 | padding-top: 13rem; /* 208px */ |
| pr-52 | padding-right: 13rem; /* 208px */ |
| pb-52 | padding-bottom: 13rem; /* 208px */ |
| pl-52 | padding-left: 13rem; /* 208px */ |
| p-56 | padding: 14rem; /* 224px */ |
| px-56 | padding-left: 14rem; /* 224px / padding-right: 14rem; / 224px */ |
| py-56 | padding-top: 14rem; /* 224px / padding-bottom: 14rem; / 224px */ |
| ps-56 | padding-inline-start: 14rem; /* 224px */ |
| pe-56 | padding-inline-end: 14rem; /* 224px */ |
| pt-56 | padding-top: 14rem; /* 224px */ |
| pr-56 | padding-right: 14rem; /* 224px */ |
| pb-56 | padding-bottom: 14rem; /* 224px */ |
| pl-56 | padding-left: 14rem; /* 224px */ |
| p-60 | padding: 15rem; /* 240px */ |
| px-60 | padding-left: 15rem; /* 240px / padding-right: 15rem; / 240px */ |
| py-60 | padding-top: 15rem; /* 240px / padding-bottom: 15rem; / 240px */ |
| ps-60 | padding-inline-start: 15rem; /* 240px */ |
| pe-60 | padding-inline-end: 15rem; /* 240px */ |
| pt-60 | padding-top: 15rem; /* 240px */ |
| pr-60 | padding-right: 15rem; /* 240px */ |
| pb-60 | padding-bottom: 15rem; /* 240px */ |
| pl-60 | padding-left: 15rem; /* 240px */ |
| p-64 | padding: 16rem; /* 256px */ |
| px-64 | padding-left: 16rem; /* 256px / padding-right: 16rem; / 256px */ |
| py-64 | padding-top: 16rem; /* 256px / padding-bottom: 16rem; / 256px */ |
| ps-64 | padding-inline-start: 16rem; /* 256px */ |
| pe-64 | padding-inline-end: 16rem; /* 256px */ |
| pt-64 | padding-top: 16rem; /* 256px */ |
| pr-64 | padding-right: 16rem; /* 256px */ |
| pb-64 | padding-bottom: 16rem; /* 256px */ |
| pl-64 | padding-left: 16rem; /* 256px */ |
| p-72 | padding: 18rem; /* 288px */ |
| px-72 | padding-left: 18rem; /* 288px / padding-right: 18rem; / 288px */ |
| py-72 | padding-top: 18rem; /* 288px / padding-bottom: 18rem; / 288px */ |
| ps-72 | padding-inline-start: 18rem; /* 288px */ |
| pe-72 | padding-inline-end: 18rem; /* 288px */ |
| pt-72 | padding-top: 18rem; /* 288px */ |
| pr-72 | padding-right: 18rem; /* 288px */ |
| pb-72 | padding-bottom: 18rem; /* 288px */ |
| pl-72 | padding-left: 18rem; /* 288px */ |
| p-80 | padding: 20rem; /* 320px */ |
| px-80 | padding-left: 20rem; /* 320px / padding-right: 20rem; / 320px */ |
| py-80 | padding-top: 20rem; /* 320px / padding-bottom: 20rem; / 320px */ |
| ps-80 | padding-inline-start: 20rem; /* 320px */ |
| pe-80 | padding-inline-end: 20rem; /* 320px */ |
| pt-80 | padding-top: 20rem; /* 320px */ |
| pr-80 | padding-right: 20rem; /* 320px */ |
| pb-80 | padding-bottom: 20rem; /* 320px */ |
| pl-80 | padding-left: 20rem; /* 320px */ |
| p-96 | padding: 24rem; /* 384px */ |
| px-96 | padding-left: 24rem; /* 384px / padding-right: 24rem; / 384px */ |
| py-96 | padding-top: 24rem; /* 384px / padding-bottom: 24rem; / 384px */ |
| ps-96 | padding-inline-start: 24rem; /* 384px */ |
| pe-96 | padding-inline-end: 24rem; /* 384px */ |
| pt-96 | padding-top: 24rem; /* 384px */ |
| pr-96 | padding-right: 24rem; /* 384px */ |
| pb-96 | padding-bottom: 24rem; /* 384px */ |
| pl-96 | padding-left: 24rem; /* 384px */ |
间距 - 外边距
| 类 | 对应的 CSS |
|---|---|
| m-0 | margin: 0px; |
| mx-0 | margin-left: 0px; margin-right: 0px; |
| my-0 | margin-top: 0px; margin-bottom: 0px; |
| ms-0 | margin-inline-start: 0px; |
| me-0 | margin-inline-end: 0px; |
| mt-0 | margin-top: 0px; |
| mr-0 | margin-right: 0px; |
| mb-0 | margin-bottom: 0px; |
| ml-0 | margin-left: 0px; |
| m-px | margin: 1px; |
| mx-px | margin-left: 1px; margin-right: 1px; |
| my-px | margin-top: 1px; margin-bottom: 1px; |
| ms-px | margin-inline-start: 1px; |
| me-px | margin-inline-end: 1px; |
| mt-px | margin-top: 1px; |
| mr-px | margin-right: 1px; |
| mb-px | margin-bottom: 1px; |
| ml-px | margin-left: 1px; |
| m-0.5 | margin: 0.125rem; /* 2px */ |
| mx-0.5 | margin-left: 0.125rem; /* 2px / margin-right: 0.125rem; / 2px */ |
| my-0.5 | margin-top: 0.125rem; /* 2px / margin-bottom: 0.125rem; / 2px */ |
| ms-0.5 | margin-inline-start: 0.125rem; /* 2px */ |
| me-0.5 | margin-inline-end: 0.125rem; /* 2px */ |
| mt-0.5 | margin-top: 0.125rem; /* 2px */ |
| mr-0.5 | margin-right: 0.125rem; /* 2px */ |
| mb-0.5 | margin-bottom: 0.125rem; /* 2px */ |
| ml-0.5 | margin-left: 0.125rem; /* 2px */ |
| m-1 | margin: 0.25rem; /* 4px */ |
| mx-1 | margin-left: 0.25rem; /* 4px / margin-right: 0.25rem; / 4px */ |
| my-1 | margin-top: 0.25rem; /* 4px / margin-bottom: 0.25rem; / 4px */ |
| ms-1 | margin-inline-start: 0.25rem; /* 4px */ |
| me-1 | margin-inline-end: 0.25rem; /* 4px */ |
| mt-1 | margin-top: 0.25rem; /* 4px */ |
| mr-1 | margin-right: 0.25rem; /* 4px */ |
| mb-1 | margin-bottom: 0.25rem; /* 4px */ |
| ml-1 | margin-left: 0.25rem; /* 4px */ |
| m-1.5 | margin: 0.375rem; /* 6px */ |
| mx-1.5 | margin-left: 0.375rem; /* 6px / margin-right: 0.375rem; / 6px */ |
| my-1.5 | margin-top: 0.375rem; /* 6px / margin-bottom: 0.375rem; / 6px */ |
| ms-1.5 | margin-inline-start: 0.375rem; /* 6px */ |
| me-1.5 | margin-inline-end: 0.375rem; /* 6px */ |
| mt-1.5 | margin-top: 0.375rem; /* 6px */ |
| mr-1.5 | margin-right: 0.375rem; /* 6px */ |
| mb-1.5 | margin-bottom: 0.375rem; /* 6px */ |
| ml-1.5 | margin-left: 0.375rem; /* 6px */ |
| m-2 | margin: 0.5rem; /* 8px */ |
| mx-2 | margin-left: 0.5rem; /* 8px / margin-right: 0.5rem; / 8px */ |
| my-2 | margin-top: 0.5rem; /* 8px / margin-bottom: 0.5rem; / 8px */ |
| ms-2 | margin-inline-start: 0.5rem; /* 8px */ |
| me-2 | margin-inline-end: 0.5rem; /* 8px */ |
| mt-2 | margin-top: 0.5rem; /* 8px */ |
| mr-2 | margin-right: 0.5rem; /* 8px */ |
| mb-2 | margin-bottom: 0.5rem; /* 8px */ |
| ml-2 | margin-left: 0.5rem; /* 8px */ |
| m-2.5 | margin: 0.625rem; /* 10px */ |
| mx-2.5 | margin-left: 0.625rem; /* 10px / margin-right: 0.625rem; / 10px */ |
| my-2.5 | margin-top: 0.625rem; /* 10px / margin-bottom: 0.625rem; / 10px */ |
| ms-2.5 | margin-inline-start: 0.625rem; /* 10px */ |
| me-2.5 | margin-inline-end: 0.625rem; /* 10px */ |
| mt-2.5 | margin-top: 0.625rem; /* 10px */ |
| mr-2.5 | margin-right: 0.625rem; /* 10px */ |
| mb-2.5 | margin-bottom: 0.625rem; /* 10px */ |
| ml-2.5 | margin-left: 0.625rem; /* 10px */ |
| m-3 | margin: 0.75rem; /* 12px */ |
| mx-3 | margin-left: 0.75rem; /* 12px / margin-right: 0.75rem; / 12px */ |
| my-3 | margin-top: 0.75rem; /* 12px / margin-bottom: 0.75rem; / 12px */ |
| ms-3 | margin-inline-start: 0.75rem; /* 12px */ |
| me-3 | margin-inline-end: 0.75rem; /* 12px */ |
| mt-3 | margin-top: 0.75rem; /* 12px */ |
| mr-3 | margin-right: 0.75rem; /* 12px */ |
| mb-3 | margin-bottom: 0.75rem; /* 12px */ |
| ml-3 | margin-left: 0.75rem; /* 12px */ |
| m-3.5 | margin: 0.875rem; /* 14px */ |
| mx-3.5 | margin-left: 0.875rem; /* 14px / margin-right: 0.875rem; / 14px */ |
| my-3.5 | margin-top: 0.875rem; /* 14px / margin-bottom: 0.875rem; / 14px */ |
| ms-3.5 | margin-inline-start: 0.875rem; /* 14px */ |
| me-3.5 | margin-inline-end: 0.875rem; /* 14px */ |
| mt-3.5 | margin-top: 0.875rem; /* 14px */ |
| mr-3.5 | margin-right: 0.875rem; /* 14px */ |
| mb-3.5 | margin-bottom: 0.875rem; /* 14px */ |
| ml-3.5 | margin-left: 0.875rem; /* 14px */ |
| m-4 | margin: 1rem; /* 16px */ |
| mx-4 | margin-left: 1rem; /* 16px / margin-right: 1rem; / 16px */ |
| my-4 | margin-top: 1rem; /* 16px / margin-bottom: 1rem; / 16px */ |
| ms-4 | margin-inline-start: 1rem; /* 16px */ |
| me-4 | margin-inline-end: 1rem; /* 16px */ |
| mt-4 | margin-top: 1rem; /* 16px */ |
| mr-4 | margin-right: 1rem; /* 16px */ |
| mb-4 | margin-bottom: 1rem; /* 16px */ |
| ml-4 | margin-left: 1rem; /* 16px */ |
| m-5 | margin: 1.25rem; /* 20px */ |
| mx-5 | margin-left: 1.25rem; /* 20px / margin-right: 1.25rem; / 20px */ |
| my-5 | margin-top: 1.25rem; /* 20px / margin-bottom: 1.25rem; / 20px */ |
| ms-5 | margin-inline-start: 1.25rem; /* 20px */ |
| me-5 | margin-inline-end: 1.25rem; /* 20px */ |
| mt-5 | margin-top: 1.25rem; /* 20px */ |
| mr-5 | margin-right: 1.25rem; /* 20px */ |
| mb-5 | margin-bottom: 1.25rem; /* 20px */ |
| ml-5 | margin-left: 1.25rem; /* 20px */ |
| m-6 | margin: 1.5rem; /* 24px */ |
| mx-6 | margin-left: 1.5rem; /* 24px / margin-right: 1.5rem; / 24px */ |
| my-6 | margin-top: 1.5rem; /* 24px / margin-bottom: 1.5rem; / 24px */ |
| ms-6 | margin-inline-start: 1.5rem; /* 24px */ |
| me-6 | margin-inline-end: 1.5rem; /* 24px */ |
| mt-6 | margin-top: 1.5rem; /* 24px */ |
| mr-6 | margin-right: 1.5rem; /* 24px */ |
| mb-6 | margin-bottom: 1.5rem; /* 24px */ |
| ml-6 | margin-left: 1.5rem; /* 24px */ |
| m-7 | margin: 1.75rem; /* 28px */ |
| mx-7 | margin-left: 1.75rem; /* 28px / margin-right: 1.75rem; / 28px */ |
| my-7 | margin-top: 1.75rem; /* 28px / margin-bottom: 1.75rem; / 28px */ |
| ms-7 | margin-inline-start: 1.75rem; /* 28px */ |
| me-7 | margin-inline-end: 1.75rem; /* 28px */ |
| mt-7 | margin-top: 1.75rem; /* 28px */ |
| mr-7 | margin-right: 1.75rem; /* 28px */ |
| mb-7 | margin-bottom: 1.75rem; /* 28px */ |
| ml-7 | margin-left: 1.75rem; /* 28px */ |
| m-8 | margin: 2rem; /* 32px */ |
| mx-8 | margin-left: 2rem; /* 32px / margin-right: 2rem; / 32px */ |
| my-8 | margin-top: 2rem; /* 32px / margin-bottom: 2rem; / 32px */ |
| ms-8 | margin-inline-start: 2rem; /* 32px */ |
| me-8 | margin-inline-end: 2rem; /* 32px */ |
| mt-8 | margin-top: 2rem; /* 32px */ |
| mr-8 | margin-right: 2rem; /* 32px */ |
| mb-8 | margin-bottom: 2rem; /* 32px */ |
| ml-8 | margin-left: 2rem; /* 32px */ |
| m-9 | margin: 2.25rem; /* 36px */ |
| mx-9 | margin-left: 2.25rem; /* 36px / margin-right: 2.25rem; / 36px */ |
| my-9 | margin-top: 2.25rem; /* 36px / margin-bottom: 2.25rem; / 36px */ |
| ms-9 | margin-inline-start: 2.25rem; /* 36px */ |
| me-9 | margin-inline-end: 2.25rem; /* 36px */ |
| mt-9 | margin-top: 2.25rem; /* 36px */ |
| mr-9 | margin-right: 2.25rem; /* 36px */ |
| mb-9 | margin-bottom: 2.25rem; /* 36px */ |
| ml-9 | margin-left: 2.25rem; /* 36px */ |
| m-10 | margin: 2.5rem; /* 40px */ |
| mx-10 | margin-left: 2.5rem; /* 40px / margin-right: 2.5rem; / 40px */ |
| my-10 | margin-top: 2.5rem; /* 40px / margin-bottom: 2.5rem; / 40px */ |
| ms-10 | margin-inline-start: 2.5rem; /* 40px */ |
| me-10 | margin-inline-end: 2.5rem; /* 40px */ |
| mt-10 | margin-top: 2.5rem; /* 40px */ |
| mr-10 | margin-right: 2.5rem; /* 40px */ |
| mb-10 | margin-bottom: 2.5rem; /* 40px */ |
| ml-10 | margin-left: 2.5rem; /* 40px */ |
| m-11 | margin: 2.75rem; /* 44px */ |
| mx-11 | margin-left: 2.75rem; /* 44px / margin-right: 2.75rem; / 44px */ |
| my-11 | margin-top: 2.75rem; /* 44px / margin-bottom: 2.75rem; / 44px */ |
| ms-11 | margin-inline-start: 2.75rem; /* 44px */ |
| me-11 | margin-inline-end: 2.75rem; /* 44px */ |
| mt-11 | margin-top: 2.75rem; /* 44px */ |
| mr-11 | margin-right: 2.75rem; /* 44px */ |
| mb-11 | margin-bottom: 2.75rem; /* 44px */ |
| ml-11 | margin-left: 2.75rem; /* 44px */ |
| m-12 | margin: 3rem; /* 48px */ |
| mx-12 | margin-left: 3rem; /* 48px / margin-right: 3rem; / 48px */ |
| my-12 | margin-top: 3rem; /* 48px / margin-bottom: 3rem; / 48px */ |
| ms-12 | margin-inline-start: 3rem; /* 48px */ |
| me-12 | margin-inline-end: 3rem; /* 48px */ |
| mt-12 | margin-top: 3rem; /* 48px */ |
| mr-12 | margin-right: 3rem; /* 48px */ |
| mb-12 | margin-bottom: 3rem; /* 48px */ |
| ml-12 | margin-left: 3rem; /* 48px */ |
| m-14 | margin: 3.5rem; /* 56px */ |
| mx-14 | margin-left: 3.5rem; /* 56px / margin-right: 3.5rem; / 56px */ |
| my-14 | margin-top: 3.5rem; /* 56px / margin-bottom: 3.5rem; / 56px */ |
| ms-14 | margin-inline-start: 3.5rem; /* 56px */ |
| me-14 | margin-inline-end: 3.5rem; /* 56px */ |
| mt-14 | margin-top: 3.5rem; /* 56px */ |
| mr-14 | margin-right: 3.5rem; /* 56px */ |
| mb-14 | margin-bottom: 3.5rem; /* 56px */ |
| ml-14 | margin-left: 3.5rem; /* 56px */ |
| m-16 | margin: 4rem; /* 64px */ |
| mx-16 | margin-left: 4rem; /* 64px / margin-right: 4rem; / 64px */ |
| my-16 | margin-top: 4rem; /* 64px / margin-bottom: 4rem; / 64px */ |
| ms-16 | margin-inline-start: 4rem; /* 64px */ |
| me-16 | margin-inline-end: 4rem; /* 64px */ |
| mt-16 | margin-top: 4rem; /* 64px */ |
| mr-16 | margin-right: 4rem; /* 64px */ |
| mb-16 | margin-bottom: 4rem; /* 64px */ |
| ml-16 | margin-left: 4rem; /* 64px */ |
| m-20 | margin: 5rem; /* 80px */ |
| mx-20 | margin-left: 5rem; /* 80px / margin-right: 5rem; / 80px */ |
| my-20 | margin-top: 5rem; /* 80px / margin-bottom: 5rem; / 80px */ |
| ms-20 | margin-inline-start: 5rem; /* 80px */ |
| me-20 | margin-inline-end: 5rem; /* 80px */ |
| mt-20 | margin-top: 5rem; /* 80px */ |
| mr-20 | margin-right: 5rem; /* 80px */ |
| mb-20 | margin-bottom: 5rem; /* 80px */ |
| ml-20 | margin-left: 5rem; /* 80px */ |
| m-24 | margin: 6rem; /* 96px */ |
| mx-24 | margin-left: 6rem; /* 96px / margin-right: 6rem; / 96px */ |
| my-24 | margin-top: 6rem; /* 96px / margin-bottom: 6rem; / 96px */ |
| ms-24 | margin-inline-start: 6rem; /* 96px */ |
| me-24 | margin-inline-end: 6rem; /* 96px */ |
| mt-24 | margin-top: 6rem; /* 96px */ |
| mr-24 | margin-right: 6rem; /* 96px */ |
| mb-24 | margin-bottom: 6rem; /* 96px */ |
| ml-24 | margin-left: 6rem; /* 96px */ |
| m-28 | margin: 7rem; /* 112px */ |
| mx-28 | margin-left: 7rem; /* 112px / margin-right: 7rem; / 112px */ |
| my-28 | margin-top: 7rem; /* 112px / margin-bottom: 7rem; / 112px */ |
| ms-28 | margin-inline-start: 7rem; /* 112px */ |
| me-28 | margin-inline-end: 7rem; /* 112px */ |
| mt-28 | margin-top: 7rem; /* 112px */ |
| mr-28 | margin-right: 7rem; /* 112px */ |
| mb-28 | margin-bottom: 7rem; /* 112px */ |
| ml-28 | margin-left: 7rem; /* 112px */ |
| m-32 | margin: 8rem; /* 128px */ |
| mx-32 | margin-left: 8rem; /* 128px / margin-right: 8rem; / 128px */ |
| my-32 | margin-top: 8rem; /* 128px / margin-bottom: 8rem; / 128px */ |
| ms-32 | margin-inline-start: 8rem; /* 128px */ |
| me-32 | margin-inline-end: 8rem; /* 128px */ |
| mt-32 | margin-top: 8rem; /* 128px */ |
| mr-32 | margin-right: 8rem; /* 128px */ |
| mb-32 | margin-bottom: 8rem; /* 128px */ |
| ml-32 | margin-left: 8rem; /* 128px */ |
| m-36 | margin: 9rem; /* 144px */ |
| mx-36 | margin-left: 9rem; /* 144px / margin-right: 9rem; / 144px */ |
| my-36 | margin-top: 9rem; /* 144px / margin-bottom: 9rem; / 144px */ |
| ms-36 | margin-inline-start: 9rem; /* 144px */ |
| me-36 | margin-inline-end: 9rem; /* 144px */ |
| mt-36 | margin-top: 9rem; /* 144px */ |
| mr-36 | margin-right: 9rem; /* 144px */ |
| mb-36 | margin-bottom: 9rem; /* 144px */ |
| ml-36 | margin-left: 9rem; /* 144px */ |
| m-40 | margin: 10rem; /* 160px */ |
| mx-40 | margin-left: 10rem; /* 160px / margin-right: 10rem; / 160px */ |
| my-40 | margin-top: 10rem; /* 160px / margin-bottom: 10rem; / 160px */ |
| ms-40 | margin-inline-start: 10rem; /* 160px */ |
| me-40 | margin-inline-end: 10rem; /* 160px */ |
| mt-40 | margin-top: 10rem; /* 160px */ |
| mr-40 | margin-right: 10rem; /* 160px */ |
| mb-40 | margin-bottom: 10rem; /* 160px */ |
| ml-40 | margin-left: 10rem; /* 160px */ |
| m-44 | margin: 11rem; /* 176px */ |
| mx-44 | margin-left: 11rem; /* 176px / margin-right: 11rem; / 176px */ |
| my-44 | margin-top: 11rem; /* 176px / margin-bottom: 11rem; / 176px */ |
| ms-44 | margin-inline-start: 11rem; /* 176px */ |
| me-44 | margin-inline-end: 11rem; /* 176px */ |
| mt-44 | margin-top: 11rem; /* 176px */ |
| mr-44 | margin-right: 11rem; /* 176px */ |
| mb-44 | margin-bottom: 11rem; /* 176px */ |
| ml-44 | margin-left: 11rem; /* 176px */ |
| m-48 | margin: 12rem; /* 192px */ |
| mx-48 | margin-left: 12rem; /* 192px / margin-right: 12rem; / 192px */ |
| my-48 | margin-top: 12rem; /* 192px / margin-bottom: 12rem; / 192px */ |
| ms-48 | margin-inline-start: 12rem; /* 192px */ |
| me-48 | margin-inline-end: 12rem; /* 192px */ |
| mt-48 | margin-top: 12rem; /* 192px */ |
| mr-48 | margin-right: 12rem; /* 192px */ |
| mb-48 | margin-bottom: 12rem; /* 192px */ |
| ml-48 | margin-left: 12rem; /* 192px */ |
| m-52 | margin: 13rem; /* 208px */ |
| mx-52 | margin-left: 13rem; /* 208px / margin-right: 13rem; / 208px */ |
| my-52 | margin-top: 13rem; /* 208px / margin-bottom: 13rem; / 208px */ |
| ms-52 | margin-inline-start: 13rem; /* 208px */ |
| me-52 | margin-inline-end: 13rem; /* 208px */ |
| mt-52 | margin-top: 13rem; /* 208px */ |
| mr-52 | margin-right: 13rem; /* 208px */ |
| mb-52 | margin-bottom: 13rem; /* 208px */ |
| ml-52 | margin-left: 13rem; /* 208px */ |
| m-56 | margin: 14rem; /* 224px */ |
| mx-56 | margin-left: 14rem; /* 224px / margin-right: 14rem; / 224px */ |
| my-56 | margin-top: 14rem; /* 224px / margin-bottom: 14rem; / 224px */ |
| ms-56 | margin-inline-start: 14rem; /* 224px */ |
| me-56 | margin-inline-end: 14rem; /* 224px */ |
| mt-56 | margin-top: 14rem; /* 224px */ |
| mr-56 | margin-right: 14rem; /* 224px */ |
| mb-56 | margin-bottom: 14rem; /* 224px */ |
| ml-56 | margin-left: 14rem; /* 224px */ |
| m-60 | margin: 15rem; /* 240px */ |
| mx-60 | margin-left: 15rem; /* 240px / margin-right: 15rem; / 240px */ |
| my-60 | margin-top: 15rem; /* 240px / margin-bottom: 15rem; / 240px */ |
| ms-60 | margin-inline-start: 15rem; /* 240px */ |
| me-60 | margin-inline-end: 15rem; /* 240px */ |
| mt-60 | margin-top: 15rem; /* 240px */ |
| mr-60 | margin-right: 15rem; /* 240px */ |
| mb-60 | margin-bottom: 15rem; /* 240px */ |
| ml-60 | margin-left: 15rem; /* 240px */ |
| m-64 | margin: 16rem; /* 256px */ |
| mx-64 | margin-left: 16rem; /* 256px / margin-right: 16rem; / 256px */ |
| my-64 | margin-top: 16rem; /* 256px / margin-bottom: 16rem; / 256px */ |
| ms-64 | margin-inline-start: 16rem; /* 256px */ |
| me-64 | margin-inline-end: 16rem; /* 256px */ |
| mt-64 | margin-top: 16rem; /* 256px */ |
| mr-64 | margin-right: 16rem; /* 256px */ |
| mb-64 | margin-bottom: 16rem; /* 256px */ |
| ml-64 | margin-left: 16rem; /* 256px */ |
| m-72 | margin: 18rem; /* 288px */ |
| mx-72 | margin-left: 18rem; /* 288px / margin-right: 18rem; / 288px */ |
| my-72 | margin-top: 18rem; /* 288px / margin-bottom: 18rem; / 288px */ |
| ms-72 | margin-inline-start: 18rem; /* 288px */ |
| me-72 | margin-inline-end: 18rem; /* 288px */ |
| mt-72 | margin-top: 18rem; /* 288px */ |
| mr-72 | margin-right: 18rem; /* 288px */ |
| mb-72 | margin-bottom: 18rem; /* 288px */ |
| ml-72 | margin-left: 18rem; /* 288px */ |
| m-80 | margin: 20rem; /* 320px */ |
| mx-80 | margin-left: 20rem; /* 320px / margin-right: 20rem; / 320px */ |
| my-80 | margin-top: 20rem; /* 320px / margin-bottom: 20rem; / 320px */ |
| ms-80 | margin-inline-start: 20rem; /* 320px */ |
| me-80 | margin-inline-end: 20rem; /* 320px */ |
| mt-80 | margin-top: 20rem; /* 320px */ |
| mr-80 | margin-right: 20rem; /* 320px */ |
| mb-80 | margin-bottom: 20rem; /* 320px */ |
| ml-80 | margin-left: 20rem; /* 320px */ |
| m-96 | margin: 24rem; /* 384px */ |
| mx-96 | margin-left: 24rem; /* 384px / margin-right: 24rem; / 384px */ |
| my-96 | margin-top: 24rem; /* 384px / margin-bottom: 24rem; / 384px */ |
| ms-96 | margin-inline-start: 24rem; /* 384px */ |
| me-96 | margin-inline-end: 24rem; /* 384px */ |
| mt-96 | margin-top: 24rem; /* 384px */ |
| mr-96 | margin-right: 24rem; /* 384px */ |
| mb-96 | margin-bottom: 24rem; /* 384px */ |
| ml-96 | margin-left: 24rem; /* 384px */ |
| m-auto | margin: auto; |
| mx-auto | margin-left: auto; margin-right: auto; |
| my-auto | margin-top: auto; margin-bottom: auto; |
| ms-auto | margin-inline-start: auto; |
| me-auto | margin-inline-end: auto; |
| mt-auto | margin-top: auto; |
| mr-auto | margin-right: auto; |
| mb-auto | margin-bottom: auto; |
| ml-auto | margin-left: auto; |
间距 - 元素与元素间的空间
| 类 | 对应的 CSS |
|---|---|
| space-x-0 > * + * | margin-left: 0px; |
| space-y-0 > * + * | margin-top: 0px; |
| space-x-0.5 > * + * | margin-left: 0.125rem; /* 2px */ |
| space-y-0.5 > * + * | margin-top: 0.125rem; /* 2px */ |
| space-x-1 > * + * | margin-left: 0.25rem; /* 4px */ |
| space-y-1 > * + * | margin-top: 0.25rem; /* 4px */ |
| space-x-1.5 > * + * | margin-left: 0.375rem; /* 6px */ |
| space-y-1.5 > * + * | margin-top: 0.375rem; /* 6px */ |
| space-x-2 > * + * | margin-left: 0.5rem; /* 8px */ |
| space-y-2 > * + * | margin-top: 0.5rem; /* 8px */ |
| space-x-2.5 > * + * | margin-left: 0.625rem; /* 10px */ |
| space-y-2.5 > * + * | margin-top: 0.625rem; /* 10px */ |
| space-x-3 > * + * | margin-left: 0.75rem; /* 12px */ |
| space-y-3 > * + * | margin-top: 0.75rem; /* 12px */ |
| space-x-3.5 > * + * | margin-left: 0.875rem; /* 14px */ |
| space-y-3.5 > * + * | margin-top: 0.875rem; /* 14px */ |
| space-x-4 > * + * | margin-left: 1rem; /* 16px */ |
| space-y-4 > * + * | margin-top: 1rem; /* 16px */ |
| space-x-5 > * + * | margin-left: 1.25rem; /* 20px */ |
| space-y-5 > * + * | margin-top: 1.25rem; /* 20px */ |
| space-x-6 > * + * | margin-left: 1.5rem; /* 24px */ |
| space-y-6 > * + * | margin-top: 1.5rem; /* 24px */ |
| space-x-7 > * + * | margin-left: 1.75rem; /* 28px */ |
| space-y-7 > * + * | margin-top: 1.75rem; /* 28px */ |
| space-x-8 > * + * | margin-left: 2rem; /* 32px */ |
| space-y-8 > * + * | margin-top: 2rem; /* 32px */ |
| space-x-9 > * + * | margin-left: 2.25rem; /* 36px */ |
| space-y-9 > * + * | margin-top: 2.25rem; /* 36px */ |
| space-x-10 > * + * | margin-left: 2.5rem; /* 40px */ |
| space-y-10 > * + * | margin-top: 2.5rem; /* 40px */ |
| space-x-11 > * + * | margin-left: 2.75rem; /* 44px */ |
| space-y-11 > * + * | margin-top: 2.75rem; /* 44px */ |
| space-x-12 > * + * | margin-left: 3rem; /* 48px */ |
| space-y-12 > * + * | margin-top: 3rem; /* 48px */ |
| space-x-14 > * + * | margin-left: 3.5rem; /* 56px */ |
| space-y-14 > * + * | margin-top: 3.5rem; /* 56px */ |
| space-x-16 > * + * | margin-left: 4rem; /* 64px */ |
| space-y-16 > * + * | margin-top: 4rem; /* 64px */ |
| space-x-20 > * + * | margin-left: 5rem; /* 80px */ |
| space-y-20 > * + * | margin-top: 5rem; /* 80px */ |
| space-x-24 > * + * | margin-left: 6rem; /* 96px */ |
| space-y-24 > * + * | margin-top: 6rem; /* 96px */ |
| space-x-28 > * + * | margin-left: 7rem; /* 112px */ |
| space-y-28 > * + * | margin-top: 7rem; /* 112px */ |
| space-x-32 > * + * | margin-left: 8rem; /* 128px */ |
| space-y-32 > * + * | margin-top: 8rem; /* 128px */ |
| space-x-36 > * + * | margin-left: 9rem; /* 144px */ |
| space-y-36 > * + * | margin-top: 9rem; /* 144px */ |
| space-x-40 > * + * | margin-left: 10rem; /* 160px */ |
| space-y-40 > * + * | margin-top: 10rem; /* 160px */ |
| space-x-44 > * + * | margin-left: 11rem; /* 176px */ |
| space-y-44 > * + * | margin-top: 11rem; /* 176px */ |
| space-x-48 > * + * | margin-left: 12rem; /* 192px */ |
| space-y-48 > * + * | margin-top: 12rem; /* 192px */ |
| space-x-52 > * + * | margin-left: 13rem; /* 208px */ |
| space-y-52 > * + * | margin-top: 13rem; /* 208px */ |
| space-x-56 > * + * | margin-left: 14rem; /* 224px */ |
| space-y-56 > * + * | margin-top: 14rem; /* 224px */ |
| space-x-60 > * + * | margin-left: 15rem; /* 240px */ |
| space-y-60 > * + * | margin-top: 15rem; /* 240px */ |
| space-x-64 > * + * | margin-left: 16rem; /* 256px */ |
| space-y-64 > * + * | margin-top: 16rem; /* 256px */ |
| space-x-72 > * + * | margin-left: 18rem; /* 288px */ |
| space-y-72 > * + * | margin-top: 18rem; /* 288px */ |
| space-x-80 > * + * | margin-left: 20rem; /* 320px */ |
| space-y-80 > * + * | margin-top: 20rem; /* 320px */ |
| space-x-96 > * + * | margin-left: 24rem; /* 384px */ |
| space-y-96 > * + * | margin-top: 24rem; /* 384px */ |
| space-x-px > * + * | margin-left: 1px; |
| space-y-px > * + * | margin-top: 1px; |
| space-y-reverse > * + * | --tw-space-y-reverse: 1; |
| space-x-reverse > * + * | --tw-space-x-reverse: 1; |
宽度
| 类 | 对应的 CSS |
|---|---|
| w-0 | width: 0px; |
| w-px | width: 1px; |
| w-0.5 | width: 0.125rem; /* 2px */ |
| w-1 | width: 0.25rem; /* 4px */ |
| w-1.5 | width: 0.375rem; /* 6px */ |
| w-2 | width: 0.5rem; /* 8px */ |
| w-2.5 | width: 0.625rem; /* 10px */ |
| w-3 | width: 0.75rem; /* 12px */ |
| w-3.5 | width: 0.875rem; /* 14px */ |
| w-4 | width: 1rem; /* 16px */ |
| w-5 | width: 1.25rem; /* 20px */ |
| w-6 | width: 1.5rem; /* 24px */ |
| w-7 | width: 1.75rem; /* 28px */ |
| w-8 | width: 2rem; /* 32px */ |
| w-9 | width: 2.25rem; /* 36px */ |
| w-10 | width: 2.5rem; /* 40px */ |
| w-11 | width: 2.75rem; /* 44px */ |
| w-12 | width: 3rem; /* 48px */ |
| w-14 | width: 3.5rem; /* 56px */ |
| w-16 | width: 4rem; /* 64px */ |
| w-20 | width: 5rem; /* 80px */ |
| w-24 | width: 6rem; /* 96px */ |
| w-28 | width: 7rem; /* 112px */ |
| w-32 | width: 8rem; /* 128px */ |
| w-36 | width: 9rem; /* 144px */ |
| w-40 | width: 10rem; /* 160px */ |
| w-44 | width: 11rem; /* 176px */ |
| w-48 | width: 12rem; /* 192px */ |
| w-52 | width: 13rem; /* 208px */ |
| w-56 | width: 14rem; /* 224px */ |
| w-60 | width: 15rem; /* 240px */ |
| w-64 | width: 16rem; /* 256px */ |
| w-72 | width: 18rem; /* 288px */ |
| w-80 | width: 20rem; /* 320px */ |
| w-96 | width: 24rem; /* 384px */ |
| w-auto | width: auto; |
| w-1/2 | width: 50%; |
| w-1/3 | width: 33.333333%; |
| w-2/3 | width: 66.666667%; |
| w-1/4 | width: 25%; |
| w-2/4 | width: 50%; |
| w-3/4 | width: 75%; |
| w-1/5 | width: 20%; |
| w-2/5 | width: 40%; |
| w-3/5 | width: 60%; |
| w-4/5 | width: 80%; |
| w-1/6 | width: 16.666667%; |
| w-2/6 | width: 33.333333%; |
| w-3/6 | width: 50%; |
| w-4/6 | width: 66.666667%; |
| w-5/6 | width: 83.333333%; |
| w-1/12 | width: 8.333333%; |
| w-2/12 | width: 16.666667%; |
| w-3/12 | width: 25%; |
| w-4/12 | width: 33.333333%; |
| w-5/12 | width: 41.666667%; |
| w-6/12 | width: 50%; |
| w-7/12 | width: 58.333333%; |
| w-8/12 | width: 66.666667%; |
| w-9/12 | width: 75%; |
| w-10/12 | width: 83.333333%; |
| w-11/12 | width: 91.666667%; |
| w-full | width: 100%; |
| w-screen | width: 100vw; |
| w-svw | width: 100svw; |
| w-lvw | width: 100lvw; |
| w-dvw | width: 100dvw; |
| w-min | width: min-content; |
| w-max | width: max-content; |
| w-fit | width: fit-content; |
添加前缀
min-或max-可分别控制最大和最小宽度。
高度
| 类 | 对应的 CSS |
|---|---|
| h-0 | height: 0px; |
| h-px | height: 1px; |
| h-0.5 | height: 0.125rem; /* 2px */ |
| h-1 | height: 0.25rem; /* 4px */ |
| h-1.5 | height: 0.375rem; /* 6px */ |
| h-2 | height: 0.5rem; /* 8px */ |
| h-2.5 | height: 0.625rem; /* 10px */ |
| h-3 | height: 0.75rem; /* 12px */ |
| h-3.5 | height: 0.875rem; /* 14px */ |
| h-4 | height: 1rem; /* 16px */ |
| h-5 | height: 1.25rem; /* 20px */ |
| h-6 | height: 1.5rem; /* 24px */ |
| h-7 | height: 1.75rem; /* 28px */ |
| h-8 | height: 2rem; /* 32px */ |
| h-9 | height: 2.25rem; /* 36px */ |
| h-10 | height: 2.5rem; /* 40px */ |
| h-11 | height: 2.75rem; /* 44px */ |
| h-12 | height: 3rem; /* 48px */ |
| h-14 | height: 3.5rem; /* 56px */ |
| h-16 | height: 4rem; /* 64px */ |
| h-20 | height: 5rem; /* 80px */ |
| h-24 | height: 6rem; /* 96px */ |
| h-28 | height: 7rem; /* 112px */ |
| h-32 | height: 8rem; /* 128px */ |
| h-36 | height: 9rem; /* 144px */ |
| h-40 | height: 10rem; /* 160px */ |
| h-44 | height: 11rem; /* 176px */ |
| h-48 | height: 12rem; /* 192px */ |
| h-52 | height: 13rem; /* 208px */ |
| h-56 | height: 14rem; /* 224px */ |
| h-60 | height: 15rem; /* 240px */ |
| h-64 | height: 16rem; /* 256px */ |
| h-72 | height: 18rem; /* 288px */ |
| h-80 | height: 20rem; /* 320px */ |
| h-96 | height: 24rem; /* 384px */ |
| h-auto | height: auto; |
| h-1/2 | height: 50%; |
| h-1/3 | height: 33.333333%; |
| h-2/3 | height: 66.666667%; |
| h-1/4 | height: 25%; |
| h-2/4 | height: 50%; |
| h-3/4 | height: 75%; |
| h-1/5 | height: 20%; |
| h-2/5 | height: 40%; |
| h-3/5 | height: 60%; |
| h-4/5 | height: 80%; |
| h-1/6 | height: 16.666667%; |
| h-2/6 | height: 33.333333%; |
| h-3/6 | height: 50%; |
| h-4/6 | height: 66.666667%; |
| h-5/6 | height: 83.333333%; |
| h-full | height: 100%; |
| h-screen | height: 100vh; |
| h-svh | height: 100svh; |
| h-lvh | height: 100lvh; |
| h-dvh | height: 100dvh; |
| h-min | height: min-content; |
| h-max | height: max-content; |
| h-fit | height: fit-content; |
添加前缀
min-或max-可分别控制最大和最小高度。
字体
| 类 | 对应的 CSS |
|---|---|
| font-sans | font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
| font-serif | font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; |
| font-mono | font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; |
文本大小
| 类 | 对应的 CSS |
|---|---|
| text-xs | font-size: 0.75rem; /* 12px / line-height: 1rem; / 16px */ |
| text-sm | font-size: 0.875rem; /* 14px / line-height: 1.25rem; / 20px */ |
| text-base | font-size: 1rem; /* 16px / line-height: 1.5rem; / 24px */ |
| text-lg | font-size: 1.125rem; /* 18px / line-height: 1.75rem; / 28px */ |
| text-xl | font-size: 1.25rem; /* 20px / line-height: 1.75rem; / 28px */ |
| text-2xl | font-size: 1.5rem; /* 24px / line-height: 2rem; / 32px */ |
| text-3xl | font-size: 1.875rem; /* 30px / line-height: 2.25rem; / 36px */ |
| text-4xl | font-size: 2.25rem; /* 36px / line-height: 2.5rem; / 40px */ |
| text-5xl | font-size: 3rem; /* 48px */ line-height: 1; |
| text-6xl | font-size: 3.75rem; /* 60px */ line-height: 1; |
| text-7xl | font-size: 4.5rem; /* 72px */ line-height: 1; |
| text-8xl | font-size: 6rem; /* 96px */ line-height: 1; |
| text-9xl | font-size: 8rem; /* 128px */ line-height: 1; |
字体样式
| 类 | 对应的 CSS |
|---|---|
| italic | font-style: italic; |
| not-italic | font-style: normal; |
字体粗细
| 类 | 对应的 CSS |
|---|---|
| font-thin | font-weight: 100; |
| font-extralight | font-weight: 200; |
| font-light | font-weight: 300; |
| font-normal | font-weight: 400; |
| font-medium | font-weight: 500; |
| font-semibold | font-weight: 600; |
| font-bold | font-weight: 700; |
| font-extrabold | font-weight: 800; |
| font-black | font-weight: 900; |
行高
| 类 | 对应的 CSS |
|---|---|
| leading-3 | line-height: .75rem; /* 12px */ |
| leading-4 | line-height: 1rem; /* 16px */ |
| leading-5 | line-height: 1.25rem; /* 20px */ |
| leading-6 | line-height: 1.5rem; /* 24px */ |
| leading-7 | line-height: 1.75rem; /* 28px */ |
| leading-8 | line-height: 2rem; /* 32px */ |
| leading-9 | line-height: 2.25rem; /* 36px */ |
| leading-10 | line-height: 2.5rem; /* 40px */ |
| leading-none | line-height: 1; |
| leading-tight | line-height: 1.25; |
| leading-snug | line-height: 1.375; |
| leading-normal | line-height: 1.5; |
| leading-relaxed | line-height: 1.625; |
| leading-loose | line-height: 2; |
文本对齐
| 类 | 对应的 CSS |
|---|---|
| text-left | text-align: left; |
| text-center | text-align: center; |
| text-right | text-align: right; |
| text-justify | text-align: justify; |
| text-start | text-align: start; |
| text-end | text-align: end; |
文本颜色
| 类 | 对应的 CSS |
|---|---|
| text-inherit | color: inherit; |
| text-current | color: currentColor; |
| text-transparent | color: transparent; |
| text-black | color: rgb(0 0 0); |
| text-white | color: rgb(255 255 255); |
| text-slate-50 | color: rgb(248 250 252); |
| text-slate-100 | color: rgb(241 245 249); |
| text-slate-200 | color: rgb(226 232 240); |
| text-slate-300 | color: rgb(203 213 225); |
| text-slate-400 | color: rgb(148 163 184); |
| text-slate-500 | color: rgb(100 116 139); |
| text-slate-600 | color: rgb(71 85 105); |
| text-slate-700 | color: rgb(51 65 85); |
| text-slate-800 | color: rgb(30 41 59); |
| text-slate-900 | color: rgb(15 23 42); |
| text-slate-950 | color: rgb(2 6 23); |
| text-gray-50 | color: rgb(249 250 251); |
| text-gray-100 | color: rgb(243 244 246); |
| text-gray-200 | color: rgb(229 231 235); |
| text-gray-300 | color: rgb(209 213 219); |
| text-gray-400 | color: rgb(156 163 175); |
| text-gray-500 | color: rgb(107 114 128); |
| text-gray-600 | color: rgb(75 85 99); |
| text-gray-700 | color: rgb(55 65 81); |
| text-gray-800 | color: rgb(31 41 55); |
| text-gray-900 | color: rgb(17 24 39); |
| text-gray-950 | color: rgb(3 7 18); |
| text-zinc-50 | color: rgb(250 250 250); |
| text-zinc-100 | color: rgb(244 244 245); |
| text-zinc-200 | color: rgb(228 228 231); |
| text-zinc-300 | color: rgb(212 212 216); |
| text-zinc-400 | color: rgb(161 161 170); |
| text-zinc-500 | color: rgb(113 113 122); |
| text-zinc-600 | color: rgb(82 82 91); |
| text-zinc-700 | color: rgb(63 63 70); |
| text-zinc-800 | color: rgb(39 39 42); |
| text-zinc-900 | color: rgb(24 24 27); |
| text-zinc-950 | color: rgb(9 9 11); |
| text-neutral-50 | color: rgb(250 250 250); |
| text-neutral-100 | color: rgb(245 245 245); |
| text-neutral-200 | color: rgb(229 229 229); |
| text-neutral-300 | color: rgb(212 212 212); |
| text-neutral-400 | color: rgb(163 163 163); |
| text-neutral-500 | color: rgb(115 115 115); |
| text-neutral-600 | color: rgb(82 82 82); |
| text-neutral-700 | color: rgb(64 64 64); |
| text-neutral-800 | color: rgb(38 38 38); |
| text-neutral-900 | color: rgb(23 23 23); |
| text-neutral-950 | color: rgb(10 10 10); |
| text-stone-50 | color: rgb(250 250 249); |
| text-stone-100 | color: rgb(245 245 244); |
| text-stone-200 | color: rgb(231 229 228); |
| text-stone-300 | color: rgb(214 211 209); |
| text-stone-400 | color: rgb(168 162 158); |
| text-stone-500 | color: rgb(120 113 108); |
| text-stone-600 | color: rgb(87 83 78); |
| text-stone-700 | color: rgb(68 64 60); |
| text-stone-800 | color: rgb(41 37 36); |
| text-stone-900 | color: rgb(28 25 23); |
| text-stone-950 | color: rgb(12 10 9); |
| text-red-50 | color: rgb(254 242 242); |
| text-red-100 | color: rgb(254 226 226); |
| text-red-200 | color: rgb(254 202 202); |
| text-red-300 | color: rgb(252 165 165); |
| text-red-400 | color: rgb(248 113 113); |
| text-red-500 | color: rgb(239 68 68); |
| text-red-600 | color: rgb(220 38 38); |
| text-red-700 | color: rgb(185 28 28); |
| text-red-800 | color: rgb(153 27 27); |
| text-red-900 | color: rgb(127 29 29); |
| text-red-950 | color: rgb(69 10 10); |
| text-orange-50 | color: rgb(255 247 237); |
| text-orange-100 | color: rgb(255 237 213); |
| text-orange-200 | color: rgb(254 215 170); |
| text-orange-300 | color: rgb(253 186 116); |
| text-orange-400 | color: rgb(251 146 60); |
| text-orange-500 | color: rgb(249 115 22); |
| text-orange-600 | color: rgb(234 88 12); |
| text-orange-700 | color: rgb(194 65 12); |
| text-orange-800 | color: rgb(154 52 18); |
| text-orange-900 | color: rgb(124 45 18); |
| text-orange-950 | color: rgb(67 20 7); |
| text-amber-50 | color: rgb(255 251 235); |
| text-amber-100 | color: rgb(254 243 199); |
| text-amber-200 | color: rgb(253 230 138); |
| text-amber-300 | color: rgb(252 211 77); |
| text-amber-400 | color: rgb(251 191 36); |
| text-amber-500 | color: rgb(245 158 11); |
| text-amber-600 | color: rgb(217 119 6); |
| text-amber-700 | color: rgb(180 83 9); |
| text-amber-800 | color: rgb(146 64 14); |
| text-amber-900 | color: rgb(120 53 15); |
| text-amber-950 | color: rgb(69 26 3); |
| text-yellow-50 | color: rgb(254 252 232); |
| text-yellow-100 | color: rgb(254 249 195); |
| text-yellow-200 | color: rgb(254 240 138); |
| text-yellow-300 | color: rgb(253 224 71); |
| text-yellow-400 | color: rgb(250 204 21); |
| text-yellow-500 | color: rgb(234 179 8); |
| text-yellow-600 | color: rgb(202 138 4); |
| text-yellow-700 | color: rgb(161 98 7); |
| text-yellow-800 | color: rgb(133 77 14); |
| text-yellow-900 | color: rgb(113 63 18); |
| text-yellow-950 | color: rgb(66 32 6); |
| text-lime-50 | color: rgb(247 254 231); |
| text-lime-100 | color: rgb(236 252 203); |
| text-lime-200 | color: rgb(217 249 157); |
| text-lime-300 | color: rgb(190 242 100); |
| text-lime-400 | color: rgb(163 230 53); |
| text-lime-500 | color: rgb(132 204 22); |
| text-lime-600 | color: rgb(101 163 13); |
| text-lime-700 | color: rgb(77 124 15); |
| text-lime-800 | color: rgb(63 98 18); |
| text-lime-900 | color: rgb(54 83 20); |
| text-lime-950 | color: rgb(26 46 5); |
| text-green-50 | color: rgb(240 253 244); |
| text-green-100 | color: rgb(220 252 231); |
| text-green-200 | color: rgb(187 247 208); |
| text-green-300 | color: rgb(134 239 172); |
| text-green-400 | color: rgb(74 222 128); |
| text-green-500 | color: rgb(34 197 94); |
| text-green-600 | color: rgb(22 163 74); |
| text-green-700 | color: rgb(21 128 61); |
| text-green-800 | color: rgb(22 101 52); |
| text-green-900 | color: rgb(20 83 45); |
| text-green-950 | color: rgb(5 46 22); |
| text-emerald-50 | color: rgb(236 253 245); |
| text-emerald-100 | color: rgb(209 250 229); |
| text-emerald-200 | color: rgb(167 243 208); |
| text-emerald-300 | color: rgb(110 231 183); |
| text-emerald-400 | color: rgb(52 211 153); |
| text-emerald-500 | color: rgb(16 185 129); |
| text-emerald-600 | color: rgb(5 150 105); |
| text-emerald-700 | color: rgb(4 120 87); |
| text-emerald-800 | color: rgb(6 95 70); |
| text-emerald-900 | color: rgb(6 78 59); |
| text-emerald-950 | color: rgb(2 44 34); |
| text-teal-50 | color: rgb(240 253 250); |
| text-teal-100 | color: rgb(204 251 241); |
| text-teal-200 | color: rgb(153 246 228); |
| text-teal-300 | color: rgb(94 234 212); |
| text-teal-400 | color: rgb(45 212 191); |
| text-teal-500 | color: rgb(20 184 166); |
| text-teal-600 | color: rgb(13 148 136); |
| text-teal-700 | color: rgb(15 118 110); |
| text-teal-800 | color: rgb(17 94 89); |
| text-teal-900 | color: rgb(19 78 74); |
| text-teal-950 | color: rgb(4 47 46); |
| text-cyan-50 | color: rgb(236 254 255); |
| text-cyan-100 | color: rgb(207 250 254); |
| text-cyan-200 | color: rgb(165 243 252); |
| text-cyan-300 | color: rgb(103 232 249); |
| text-cyan-400 | color: rgb(34 211 238); |
| text-cyan-500 | color: rgb(6 182 212); |
| text-cyan-600 | color: rgb(8 145 178); |
| text-cyan-700 | color: rgb(14 116 144); |
| text-cyan-800 | color: rgb(21 94 117); |
| text-cyan-900 | color: rgb(22 78 99); |
| text-cyan-950 | color: rgb(8 51 68); |
| text-sky-50 | color: rgb(240 249 255); |
| text-sky-100 | color: rgb(224 242 254); |
| text-sky-200 | color: rgb(186 230 253); |
| text-sky-300 | color: rgb(125 211 252); |
| text-sky-400 | color: rgb(56 189 248); |
| text-sky-500 | color: rgb(14 165 233); |
| text-sky-600 | color: rgb(2 132 199); |
| text-sky-700 | color: rgb(3 105 161); |
| text-sky-800 | color: rgb(7 89 133); |
| text-sky-900 | color: rgb(12 74 110); |
| text-sky-950 | color: rgb(8 47 73); |
| text-blue-50 | color: rgb(239 246 255); |
| text-blue-100 | color: rgb(219 234 254); |
| text-blue-200 | color: rgb(191 219 254); |
| text-blue-300 | color: rgb(147 197 253); |
| text-blue-400 | color: rgb(96 165 250); |
| text-blue-500 | color: rgb(59 130 246); |
| text-blue-600 | color: rgb(37 99 235); |
| text-blue-700 | color: rgb(29 78 216); |
| text-blue-800 | color: rgb(30 64 175); |
| text-blue-900 | color: rgb(30 58 138); |
| text-blue-950 | color: rgb(23 37 84); |
| text-indigo-50 | color: rgb(238 242 255); |
| text-indigo-100 | color: rgb(224 231 255); |
| text-indigo-200 | color: rgb(199 210 254); |
| text-indigo-300 | color: rgb(165 180 252); |
| text-indigo-400 | color: rgb(129 140 248); |
| text-indigo-500 | color: rgb(99 102 241); |
| text-indigo-600 | color: rgb(79 70 229); |
| text-indigo-700 | color: rgb(67 56 202); |
| text-indigo-800 | color: rgb(55 48 163); |
| text-indigo-900 | color: rgb(49 46 129); |
| text-indigo-950 | color: rgb(30 27 75); |
| text-violet-50 | color: rgb(245 243 255); |
| text-violet-100 | color: rgb(237 233 254); |
| text-violet-200 | color: rgb(221 214 254); |
| text-violet-300 | color: rgb(196 181 253); |
| text-violet-400 | color: rgb(167 139 250); |
| text-violet-500 | color: rgb(139 92 246); |
| text-violet-600 | color: rgb(124 58 237); |
| text-violet-700 | color: rgb(109 40 217); |
| text-violet-800 | color: rgb(91 33 182); |
| text-violet-900 | color: rgb(76 29 149); |
| text-violet-950 | color: rgb(46 16 101); |
| text-purple-50 | color: rgb(250 245 255); |
| text-purple-100 | color: rgb(243 232 255); |
| text-purple-200 | color: rgb(233 213 255); |
| text-purple-300 | color: rgb(216 180 254); |
| text-purple-400 | color: rgb(192 132 252); |
| text-purple-500 | color: rgb(168 85 247); |
| text-purple-600 | color: rgb(147 51 234); |
| text-purple-700 | color: rgb(126 34 206); |
| text-purple-800 | color: rgb(107 33 168); |
| text-purple-900 | color: rgb(88 28 135); |
| text-purple-950 | color: rgb(59 7 100); |
| text-fuchsia-50 | color: rgb(253 244 255); |
| text-fuchsia-100 | color: rgb(250 232 255); |
| text-fuchsia-200 | color: rgb(245 208 254); |
| text-fuchsia-300 | color: rgb(240 171 252); |
| text-fuchsia-400 | color: rgb(232 121 249); |
| text-fuchsia-500 | color: rgb(217 70 239); |
| text-fuchsia-600 | color: rgb(192 38 211); |
| text-fuchsia-700 | color: rgb(162 28 175); |
| text-fuchsia-800 | color: rgb(134 25 143); |
| text-fuchsia-900 | color: rgb(112 26 117); |
| text-fuchsia-950 | color: rgb(74 4 78); |
| text-pink-50 | color: rgb(253 242 248); |
| text-pink-100 | color: rgb(252 231 243); |
| text-pink-200 | color: rgb(251 207 232); |
| text-pink-300 | color: rgb(249 168 212); |
| text-pink-400 | color: rgb(244 114 182); |
| text-pink-500 | color: rgb(236 72 153); |
| text-pink-600 | color: rgb(219 39 119); |
| text-pink-700 | color: rgb(190 24 93); |
| text-pink-800 | color: rgb(157 23 77); |
| text-pink-900 | color: rgb(131 24 67); |
| text-pink-950 | color: rgb(80 7 36); |
| text-rose-50 | color: rgb(255 241 242); |
| text-rose-100 | color: rgb(255 228 230); |
| text-rose-200 | color: rgb(254 205 211); |
| text-rose-300 | color: rgb(253 164 175); |
| text-rose-400 | color: rgb(251 113 133); |
| text-rose-500 | color: rgb(244 63 94); |
| text-rose-600 | color: rgb(225 29 72); |
| text-rose-700 | color: rgb(190 18 60); |
| text-rose-800 | color: rgb(159 18 57); |
| text-rose-900 | color: rgb(136 19 55); |
| text-rose-950 | color: rgb(76 5 25); |
文本溢出
| 类 | 对应的 CSS |
|---|---|
| truncate | overflow: hidden; text-overflow: ellipsis; white-space: nowrap; |
| text-ellipsis | text-overflow: ellipsis; |
| text-clip | text-overflow: clip; |
文本换行
| 类 | 对应的 CSS |
|---|---|
| text-wrap | text-wrap: wrap; |
| text-nowrap | text-wrap: nowrap; |
| text-balance | text-wrap: balance; |
| text-pretty | text-wrap: pretty; |
文本缩进
| 类 | 对应的 CSS |
|---|---|
| indent-0 | text-indent: 0px; |
| indent-px | text-indent: 1px; |
| indent-0.5 | text-indent: 0.125rem; /* 2px */ |
| indent-1 | text-indent: 0.25rem; /* 4px */ |
| indent-1.5 | text-indent: 0.375rem; /* 6px */ |
| indent-2 | text-indent: 0.5rem; /* 8px */ |
| indent-2.5 | text-indent: 0.625rem; /* 10px */ |
| indent-3 | text-indent: 0.75rem; /* 12px */ |
| indent-3.5 | text-indent: 0.875rem; /* 14px */ |
| indent-4 | text-indent: 1rem; /* 16px */ |
| indent-5 | text-indent: 1.25rem; /* 20px */ |
| indent-6 | text-indent: 1.5rem; /* 24px */ |
| indent-7 | text-indent: 1.75rem; /* 28px */ |
| indent-8 | text-indent: 2rem; /* 32px */ |
| indent-9 | text-indent: 2.25rem; /* 36px */ |
| indent-10 | text-indent: 2.5rem; /* 40px */ |
| indent-11 | text-indent: 2.75rem; /* 44px */ |
| indent-12 | text-indent: 3rem; /* 48px */ |
| indent-14 | text-indent: 3.5rem; /* 56px */ |
| indent-16 | text-indent: 4rem; /* 64px */ |
| indent-20 | text-indent: 5rem; /* 80px */ |
| indent-24 | text-indent: 6rem; /* 96px */ |
| indent-28 | text-indent: 7rem; /* 112px */ |
| indent-32 | text-indent: 8rem; /* 128px */ |
| indent-36 | text-indent: 9rem; /* 144px */ |
| indent-40 | text-indent: 10rem; /* 160px */ |
| indent-44 | text-indent: 11rem; /* 176px */ |
| indent-48 | text-indent: 12rem; /* 192px */ |
| indent-52 | text-indent: 13rem; /* 208px */ |
| indent-56 | text-indent: 14rem; /* 224px */ |
| indent-60 | text-indent: 15rem; /* 240px */ |
| indent-64 | text-indent: 16rem; /* 256px */ |
| indent-72 | text-indent: 18rem; /* 288px */ |
| indent-80 | text-indent: 20rem; /* 320px */ |
| indent-96 | text-indent: 24rem; /* 384px */ |
背景颜色
| 类 | 对应的 CSS | 预览 |
|---|---|---|
| bg-inherit | background-color: inherit; | |
| bg-current | background-color: currentColor; | |
| bg-transparent | background-color: transparent; | |
| bg-black | background-color: rgb(0 0 0); | |
| bg-white | background-color: rgb(255 255 255); | |
| bg-slate-50 | background-color: rgb(248 250 252); | |
| bg-slate-100 | background-color: rgb(241 245 249); | |
| bg-slate-200 | background-color: rgb(226 232 240); | |
| bg-slate-300 | background-color: rgb(203 213 225); | |
| bg-slate-400 | background-color: rgb(148 163 184); | |
| bg-slate-500 | background-color: rgb(100 116 139); | |
| bg-slate-600 | background-color: rgb(71 85 105); | |
| bg-slate-700 | background-color: rgb(51 65 85); | |
| bg-slate-800 | background-color: rgb(30 41 59); | |
| bg-slate-900 | background-color: rgb(15 23 42); | |
| bg-slate-950 | background-color: rgb(2 6 23); | |
| bg-gray-50 | background-color: rgb(249 250 251); | |
| bg-gray-100 | background-color: rgb(243 244 246); | |
| bg-gray-200 | background-color: rgb(229 231 235); | |
| bg-gray-300 | background-color: rgb(209 213 219); | |
| bg-gray-400 | background-color: rgb(156 163 175); | |
| bg-gray-500 | background-color: rgb(107 114 128); | |
| bg-gray-600 | background-color: rgb(75 85 99); | |
| bg-gray-700 | background-color: rgb(55 65 81); | |
| bg-gray-800 | background-color: rgb(31 41 55); | |
| bg-gray-900 | background-color: rgb(17 24 39); | |
| bg-gray-950 | background-color: rgb(3 7 18); | |
| bg-zinc-50 | background-color: rgb(250 250 250); | |
| bg-zinc-100 | background-color: rgb(244 244 245); | |
| bg-zinc-200 | background-color: rgb(228 228 231); | |
| bg-zinc-300 | background-color: rgb(212 212 216); | |
| bg-zinc-400 | background-color: rgb(161 161 170); | |
| bg-zinc-500 | background-color: rgb(113 113 122); | |
| bg-zinc-600 | background-color: rgb(82 82 91); | |
| bg-zinc-700 | background-color: rgb(63 63 70); | |
| bg-zinc-800 | background-color: rgb(39 39 42); | |
| bg-zinc-900 | background-color: rgb(24 24 27); | |
| bg-zinc-950 | background-color: rgb(9 9 11); | |
| bg-neutral-50 | background-color: rgb(250 250 250); | |
| bg-neutral-100 | background-color: rgb(245 245 245); | |
| bg-neutral-200 | background-color: rgb(229 229 229); | |
| bg-neutral-300 | background-color: rgb(212 212 212); | |
| bg-neutral-400 | background-color: rgb(163 163 163); | |
| bg-neutral-500 | background-color: rgb(115 115 115); | |
| bg-neutral-600 | background-color: rgb(82 82 82); | |
| bg-neutral-700 | background-color: rgb(64 64 64); | |
| bg-neutral-800 | background-color: rgb(38 38 38); | |
| bg-neutral-900 | background-color: rgb(23 23 23); | |
| bg-neutral-950 | background-color: rgb(10 10 10); | |
| bg-stone-50 | background-color: rgb(250 250 249); | |
| bg-stone-100 | background-color: rgb(245 245 244); | |
| bg-stone-200 | background-color: rgb(231 229 228); | |
| bg-stone-300 | background-color: rgb(214 211 209); | |
| bg-stone-400 | background-color: rgb(168 162 158); | |
| bg-stone-500 | background-color: rgb(120 113 108); | |
| bg-stone-600 | background-color: rgb(87 83 78); | |
| bg-stone-700 | background-color: rgb(68 64 60); | |
| bg-stone-800 | background-color: rgb(41 37 36); | |
| bg-stone-900 | background-color: rgb(28 25 23); | |
| bg-stone-950 | background-color: rgb(12 10 9); | |
| bg-red-50 | background-color: rgb(254 242 242); | |
| bg-red-100 | background-color: rgb(254 226 226); | |
| bg-red-200 | background-color: rgb(254 202 202); | |
| bg-red-300 | background-color: rgb(252 165 165); | |
| bg-red-400 | background-color: rgb(248 113 113); | |
| bg-red-500 | background-color: rgb(239 68 68); | |
| bg-red-600 | background-color: rgb(220 38 38); | |
| bg-red-700 | background-color: rgb(185 28 28); | |
| bg-red-800 | background-color: rgb(153 27 27); | |
| bg-red-900 | background-color: rgb(127 29 29); | |
| bg-red-950 | background-color: rgb(69 10 10); | |
| bg-orange-50 | background-color: rgb(255 247 237); | |
| bg-orange-100 | background-color: rgb(255 237 213); | |
| bg-orange-200 | background-color: rgb(254 215 170); | |
| bg-orange-300 | background-color: rgb(253 186 116); | |
| bg-orange-400 | background-color: rgb(251 146 60); | |
| bg-orange-500 | background-color: rgb(249 115 22); | |
| bg-orange-600 | background-color: rgb(234 88 12); | |
| bg-orange-700 | background-color: rgb(194 65 12); | |
| bg-orange-800 | background-color: rgb(154 52 18); | |
| bg-orange-900 | background-color: rgb(124 45 18); | |
| bg-orange-950 | background-color: rgb(67 20 7); | |
| bg-amber-50 | background-color: rgb(255 251 235); | |
| bg-amber-100 | background-color: rgb(254 243 199); | |
| bg-amber-200 | background-color: rgb(253 230 138); | |
| bg-amber-300 | background-color: rgb(252 211 77); | |
| bg-amber-400 | background-color: rgb(251 191 36); | |
| bg-amber-500 | background-color: rgb(245 158 11); | |
| bg-amber-600 | background-color: rgb(217 119 6); | |
| bg-amber-700 | background-color: rgb(180 83 9); | |
| bg-amber-800 | background-color: rgb(146 64 14); | |
| bg-amber-900 | background-color: rgb(120 53 15); | |
| bg-amber-950 | background-color: rgb(69 26 3); | |
| bg-yellow-50 | background-color: rgb(254 252 232); | |
| bg-yellow-100 | background-color: rgb(254 249 195); | |
| bg-yellow-200 | background-color: rgb(254 240 138); | |
| bg-yellow-300 | background-color: rgb(253 224 71); | |
| bg-yellow-400 | background-color: rgb(250 204 21); | |
| bg-yellow-500 | background-color: rgb(234 179 8); | |
| bg-yellow-600 | background-color: rgb(202 138 4); | |
| bg-yellow-700 | background-color: rgb(161 98 7); | |
| bg-yellow-800 | background-color: rgb(133 77 14); | |
| bg-yellow-900 | background-color: rgb(113 63 18); | |
| bg-yellow-950 | background-color: rgb(66 32 6); | |
| bg-lime-50 | background-color: rgb(247 254 231); | |
| bg-lime-100 | background-color: rgb(236 252 203); | |
| bg-lime-200 | background-color: rgb(217 249 157); | |
| bg-lime-300 | background-color: rgb(190 242 100); | |
| bg-lime-400 | background-color: rgb(163 230 53); | |
| bg-lime-500 | background-color: rgb(132 204 22); | |
| bg-lime-600 | background-color: rgb(101 163 13); | |
| bg-lime-700 | background-color: rgb(77 124 15); | |
| bg-lime-800 | background-color: rgb(63 98 18); | |
| bg-lime-900 | background-color: rgb(54 83 20); | |
| bg-lime-950 | background-color: rgb(26 46 5); | |
| bg-green-50 | background-color: rgb(240 253 244); | |
| bg-green-100 | background-color: rgb(220 252 231); | |
| bg-green-200 | background-color: rgb(187 247 208); | |
| bg-green-300 | background-color: rgb(134 239 172); | |
| bg-green-400 | background-color: rgb(74 222 128); | |
| bg-green-500 | background-color: rgb(34 197 94); | |
| bg-green-600 | background-color: rgb(22 163 74); | |
| bg-green-700 | background-color: rgb(21 128 61); | |
| bg-green-800 | background-color: rgb(22 101 52); | |
| bg-green-900 | background-color: rgb(20 83 45); | |
| bg-green-950 | background-color: rgb(5 46 22); | |
| bg-emerald-50 | background-color: rgb(236 253 245); | |
| bg-emerald-100 | background-color: rgb(209 250 229); | |
| bg-emerald-200 | background-color: rgb(167 243 208); | |
| bg-emerald-300 | background-color: rgb(110 231 183); | |
| bg-emerald-400 | background-color: rgb(52 211 153); | |
| bg-emerald-500 | background-color: rgb(16 185 129); | |
| bg-emerald-600 | background-color: rgb(5 150 105); | |
| bg-emerald-700 | background-color: rgb(4 120 87); | |
| bg-emerald-800 | background-color: rgb(6 95 70); | |
| bg-emerald-900 | background-color: rgb(6 78 59); | |
| bg-emerald-950 | background-color: rgb(2 44 34); | |
| bg-teal-50 | background-color: rgb(240 253 250); | |
| bg-teal-100 | background-color: rgb(204 251 241); | |
| bg-teal-200 | background-color: rgb(153 246 228); | |
| bg-teal-300 | background-color: rgb(94 234 212); | |
| bg-teal-400 | background-color: rgb(45 212 191); | |
| bg-teal-500 | background-color: rgb(20 184 166); | |
| bg-teal-600 | background-color: rgb(13 148 136); | |
| bg-teal-700 | background-color: rgb(15 118 110); | |
| bg-teal-800 | background-color: rgb(17 94 89); | |
| bg-teal-900 | background-color: rgb(19 78 74); | |
| bg-teal-950 | background-color: rgb(4 47 46); | |
| bg-cyan-50 | background-color: rgb(236 254 255); | |
| bg-cyan-100 | background-color: rgb(207 250 254); | |
| bg-cyan-200 | background-color: rgb(165 243 252); | |
| bg-cyan-300 | background-color: rgb(103 232 249); | |
| bg-cyan-400 | background-color: rgb(34 211 238); | |
| bg-cyan-500 | background-color: rgb(6 182 212); | |
| bg-cyan-600 | background-color: rgb(8 145 178); | |
| bg-cyan-700 | background-color: rgb(14 116 144); | |
| bg-cyan-800 | background-color: rgb(21 94 117); | |
| bg-cyan-900 | background-color: rgb(22 78 99); | |
| bg-cyan-950 | background-color: rgb(8 51 68); | |
| bg-sky-50 | background-color: rgb(240 249 255); | |
| bg-sky-100 | background-color: rgb(224 242 254); | |
| bg-sky-200 | background-color: rgb(186 230 253); | |
| bg-sky-300 | background-color: rgb(125 211 252); | |
| bg-sky-400 | background-color: rgb(56 189 248); | |
| bg-sky-500 | background-color: rgb(14 165 233); | |
| bg-sky-600 | background-color: rgb(2 132 199); | |
| bg-sky-700 | background-color: rgb(3 105 161); | |
| bg-sky-800 | background-color: rgb(7 89 133); | |
| bg-sky-900 | background-color: rgb(12 74 110); | |
| bg-sky-950 | background-color: rgb(8 47 73); | |
| bg-blue-50 | background-color: rgb(239 246 255); | |
| bg-blue-100 | background-color: rgb(219 234 254); | |
| bg-blue-200 | background-color: rgb(191 219 254); | |
| bg-blue-300 | background-color: rgb(147 197 253); | |
| bg-blue-400 | background-color: rgb(96 165 250); | |
| bg-blue-500 | background-color: rgb(59 130 246); | |
| bg-blue-600 | background-color: rgb(37 99 235); | |
| bg-blue-700 | background-color: rgb(29 78 216); | |
| bg-blue-800 | background-color: rgb(30 64 175); | |
| bg-blue-900 | background-color: rgb(30 58 138); | |
| bg-blue-950 | background-color: rgb(23 37 84); | |
| bg-indigo-50 | background-color: rgb(238 242 255); | |
| bg-indigo-100 | background-color: rgb(224 231 255); | |
| bg-indigo-200 | background-color: rgb(199 210 254); | |
| bg-indigo-300 | background-color: rgb(165 180 252); | |
| bg-indigo-400 | background-color: rgb(129 140 248); | |
| bg-indigo-500 | background-color: rgb(99 102 241); | |
| bg-indigo-600 | background-color: rgb(79 70 229); | |
| bg-indigo-700 | background-color: rgb(67 56 202); | |
| bg-indigo-800 | background-color: rgb(55 48 163); | |
| bg-indigo-900 | background-color: rgb(49 46 129); | |
| bg-indigo-950 | background-color: rgb(30 27 75); | |
| bg-violet-50 | background-color: rgb(245 243 255); | |
| bg-violet-100 | background-color: rgb(237 233 254); | |
| bg-violet-200 | background-color: rgb(221 214 254); | |
| bg-violet-300 | background-color: rgb(196 181 253); | |
| bg-violet-400 | background-color: rgb(167 139 250); | |
| bg-violet-500 | background-color: rgb(139 92 246); | |
| bg-violet-600 | background-color: rgb(124 58 237); | |
| bg-violet-700 | background-color: rgb(109 40 217); | |
| bg-violet-800 | background-color: rgb(91 33 182); | |
| bg-violet-900 | background-color: rgb(76 29 149); | |
| bg-violet-950 | background-color: rgb(46 16 101); | |
| bg-purple-50 | background-color: rgb(250 245 255); | |
| bg-purple-100 | background-color: rgb(243 232 255); | |
| bg-purple-200 | background-color: rgb(233 213 255); | |
| bg-purple-300 | background-color: rgb(216 180 254); | |
| bg-purple-400 | background-color: rgb(192 132 252); | |
| bg-purple-500 | background-color: rgb(168 85 247); | |
| bg-purple-600 | background-color: rgb(147 51 234); | |
| bg-purple-700 | background-color: rgb(126 34 206); | |
| bg-purple-800 | background-color: rgb(107 33 168); | |
| bg-purple-900 | background-color: rgb(88 28 135); | |
| bg-purple-950 | background-color: rgb(59 7 100); | |
| bg-fuchsia-50 | background-color: rgb(253 244 255); | |
| bg-fuchsia-100 | background-color: rgb(250 232 255); | |
| bg-fuchsia-200 | background-color: rgb(245 208 254); | |
| bg-fuchsia-300 | background-color: rgb(240 171 252); | |
| bg-fuchsia-400 | background-color: rgb(232 121 249); | |
| bg-fuchsia-500 | background-color: rgb(217 70 239); | |
| bg-fuchsia-600 | background-color: rgb(192 38 211); | |
| bg-fuchsia-700 | background-color: rgb(162 28 175); | |
| bg-fuchsia-800 | background-color: rgb(134 25 143); | |
| bg-fuchsia-900 | background-color: rgb(112 26 117); | |
| bg-fuchsia-950 | background-color: rgb(74 4 78); | |
| bg-pink-50 | background-color: rgb(253 242 248); | |
| bg-pink-100 | background-color: rgb(252 231 243); | |
| bg-pink-200 | background-color: rgb(251 207 232); | |
| bg-pink-300 | background-color: rgb(249 168 212); | |
| bg-pink-400 | background-color: rgb(244 114 182); | |
| bg-pink-500 | background-color: rgb(236 72 153); | |
| bg-pink-600 | background-color: rgb(219 39 119); | |
| bg-pink-700 | background-color: rgb(190 24 93); | |
| bg-pink-800 | background-color: rgb(157 23 77); | |
| bg-pink-900 | background-color: rgb(131 24 67); | |
| bg-pink-950 | background-color: rgb(80 7 36); | |
| bg-rose-50 | background-color: rgb(255 241 242); | |
| bg-rose-100 | background-color: rgb(255 228 230); | |
| bg-rose-200 | background-color: rgb(254 205 211); | |
| bg-rose-300 | background-color: rgb(253 164 175); | |
| bg-rose-400 | background-color: rgb(251 113 133); | |
| bg-rose-500 | background-color: rgb(244 63 94); | |
| bg-rose-600 | background-color: rgb(225 29 72); | |
| bg-rose-700 | background-color: rgb(190 18 60); | |
| bg-rose-800 | background-color: rgb(159 18 57); | |
| bg-rose-900 | background-color: rgb(136 19 55); | |
| bg-rose-950 | background-color: rgb(76 5 25); |
边框圆角
| 类 | 对应的 CSS |
|---|---|
| rounded-none | border-radius: 0px; |
| rounded-sm | border-radius: 0.125rem; /* 2px */ |
| rounded | border-radius: 0.25rem; /* 4px */ |
| rounded-md | border-radius: 0.375rem; /* 6px */ |
| rounded-lg | border-radius: 0.5rem; /* 8px */ |
| rounded-xl | border-radius: 0.75rem; /* 12px */ |
| rounded-2xl | border-radius: 1rem; /* 16px */ |
| rounded-3xl | border-radius: 1.5rem; /* 24px */ |
| rounded-full | border-radius: 9999px; |
| rounded-s-none | border-start-start-radius: 0px; border-end-start-radius: 0px; |
| rounded-s-sm | border-start-start-radius: 0.125rem; /* 2px / border-end-start-radius: 0.125rem; / 2px */ |
| rounded-s | border-start-start-radius: 0.25rem; /* 4px / border-end-start-radius: 0.25rem; / 4px */ |
| rounded-s-md | border-start-start-radius: 0.375rem; /* 6px / border-end-start-radius: 0.375rem; / 6px */ |
| rounded-s-lg | border-start-start-radius: 0.5rem; /* 8px / border-end-start-radius: 0.5rem; / 8px */ |
| rounded-s-xl | border-start-start-radius: 0.75rem; /* 12px / border-end-start-radius: 0.75rem; / 12px */ |
| rounded-s-2xl | border-start-start-radius: 1rem; /* 16px / border-end-start-radius: 1rem; / 16px */ |
| rounded-s-3xl | border-start-start-radius: 1.5rem; /* 24px / border-end-start-radius: 1.5rem; / 24px */ |
| rounded-s-full | border-start-start-radius: 9999px; border-end-start-radius: 9999px; |
| rounded-e-none | border-start-end-radius: 0px; border-end-end-radius: 0px; |
| rounded-e-sm | border-start-end-radius: 0.125rem; /* 2px / border-end-end-radius: 0.125rem; / 2px */ |
| rounded-e | border-start-end-radius: 0.25rem; /* 4px / border-end-end-radius: 0.25rem; / 4px */ |
| rounded-e-md | border-start-end-radius: 0.375rem; /* 6px / border-end-end-radius: 0.375rem; / 6px */ |
| rounded-e-lg | border-start-end-radius: 0.5rem; /* 8px / border-end-end-radius: 0.5rem; / 8px */ |
| rounded-e-xl | border-start-end-radius: 0.75rem; /* 12px / border-end-end-radius: 0.75rem; / 12px */ |
| rounded-e-2xl | border-start-end-radius: 1rem; /* 16px / border-end-end-radius: 1rem; / 16px */ |
| rounded-e-3xl | border-start-end-radius: 1.5rem; /* 24px / border-end-end-radius: 1.5rem; / 24px */ |
| rounded-e-full | border-start-end-radius: 9999px; border-end-end-radius: 9999px; |
| rounded-t-none | border-top-left-radius: 0px; border-top-right-radius: 0px; |
| rounded-t-sm | border-top-left-radius: 0.125rem; /* 2px / border-top-right-radius: 0.125rem; / 2px */ |
| rounded-t | border-top-left-radius: 0.25rem; /* 4px / border-top-right-radius: 0.25rem; / 4px */ |
| rounded-t-md | border-top-left-radius: 0.375rem; /* 6px / border-top-right-radius: 0.375rem; / 6px */ |
| rounded-t-lg | border-top-left-radius: 0.5rem; /* 8px / border-top-right-radius: 0.5rem; / 8px */ |
| rounded-t-xl | border-top-left-radius: 0.75rem; /* 12px / border-top-right-radius: 0.75rem; / 12px */ |
| rounded-t-2xl | border-top-left-radius: 1rem; /* 16px / border-top-right-radius: 1rem; / 16px */ |
| rounded-t-3xl | border-top-left-radius: 1.5rem; /* 24px / border-top-right-radius: 1.5rem; / 24px */ |
| rounded-t-full | border-top-left-radius: 9999px; border-top-right-radius: 9999px; |
| rounded-r-none | border-top-right-radius: 0px; border-bottom-right-radius: 0px; |
| rounded-r-sm | border-top-right-radius: 0.125rem; /* 2px / border-bottom-right-radius: 0.125rem; / 2px */ |
| rounded-r | border-top-right-radius: 0.25rem; /* 4px / border-bottom-right-radius: 0.25rem; / 4px */ |
| rounded-r-md | border-top-right-radius: 0.375rem; /* 6px / border-bottom-right-radius: 0.375rem; / 6px */ |
| rounded-r-lg | border-top-right-radius: 0.5rem; /* 8px / border-bottom-right-radius: 0.5rem; / 8px */ |
| rounded-r-xl | border-top-right-radius: 0.75rem; /* 12px / border-bottom-right-radius: 0.75rem; / 12px */ |
| rounded-r-2xl | border-top-right-radius: 1rem; /* 16px / border-bottom-right-radius: 1rem; / 16px */ |
| rounded-r-3xl | border-top-right-radius: 1.5rem; /* 24px / border-bottom-right-radius: 1.5rem; / 24px */ |
| rounded-r-full | border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; |
| rounded-b-none | border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; |
| rounded-b-sm | border-bottom-right-radius: 0.125rem; /* 2px / border-bottom-left-radius: 0.125rem; / 2px */ |
| rounded-b | border-bottom-right-radius: 0.25rem; /* 4px / border-bottom-left-radius: 0.25rem; / 4px */ |
| rounded-b-md | border-bottom-right-radius: 0.375rem; /* 6px / border-bottom-left-radius: 0.375rem; / 6px */ |
| rounded-b-lg | border-bottom-right-radius: 0.5rem; /* 8px / border-bottom-left-radius: 0.5rem; / 8px */ |
| rounded-b-xl | border-bottom-right-radius: 0.75rem; /* 12px / border-bottom-left-radius: 0.75rem; / 12px */ |
| rounded-b-2xl | border-bottom-right-radius: 1rem; /* 16px / border-bottom-left-radius: 1rem; / 16px */ |
| rounded-b-3xl | border-bottom-right-radius: 1.5rem; /* 24px / border-bottom-left-radius: 1.5rem; / 24px */ |
| rounded-b-full | border-bottom-right-radius: 9999px; border-bottom-left-radius: 9999px; |
| rounded-l-none | border-top-left-radius: 0px; border-bottom-left-radius: 0px; |
| rounded-l-sm | border-top-left-radius: 0.125rem; /* 2px / border-bottom-left-radius: 0.125rem; / 2px */ |
| rounded-l | border-top-left-radius: 0.25rem; /* 4px / border-bottom-left-radius: 0.25rem; / 4px */ |
| rounded-l-md | border-top-left-radius: 0.375rem; /* 6px / border-bottom-left-radius: 0.375rem; / 6px */ |
| rounded-l-lg | border-top-left-radius: 0.5rem; /* 8px / border-bottom-left-radius: 0.5rem; / 8px */ |
| rounded-l-xl | border-top-left-radius: 0.75rem; /* 12px / border-bottom-left-radius: 0.75rem; / 12px */ |
| rounded-l-2xl | border-top-left-radius: 1rem; /* 16px / border-bottom-left-radius: 1rem; / 16px */ |
| rounded-l-3xl | border-top-left-radius: 1.5rem; /* 24px / border-bottom-left-radius: 1.5rem; / 24px */ |
| rounded-l-full | border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; |
| rounded-ss-none | border-start-start-radius: 0px; |
| rounded-ss-sm | border-start-start-radius: 0.125rem; /* 2px */ |
| rounded-ss | border-start-start-radius: 0.25rem; /* 4px */ |
| rounded-ss-md | border-start-start-radius: 0.375rem; /* 6px */ |
| rounded-ss-lg | border-start-start-radius: 0.5rem; /* 8px */ |
| rounded-ss-xl | border-start-start-radius: 0.75rem; /* 12px */ |
| rounded-ss-2xl | border-start-start-radius: 1rem; /* 16px */ |
| rounded-ss-3xl | border-start-start-radius: 1.5rem; /* 24px */ |
| rounded-ss-full | border-start-start-radius: 9999px; |
| rounded-se-none | border-start-end-radius: 0px; |
| rounded-se-sm | border-start-end-radius: 0.125rem; /* 2px */ |
| rounded-se | border-start-end-radius: 0.25rem; /* 4px */ |
| rounded-se-md | border-start-end-radius: 0.375rem; /* 6px */ |
| rounded-se-lg | border-start-end-radius: 0.5rem; /* 8px */ |
| rounded-se-xl | border-start-end-radius: 0.75rem; /* 12px */ |
| rounded-se-2xl | border-start-end-radius: 1rem; /* 16px */ |
| rounded-se-3xl | border-start-end-radius: 1.5rem; /* 24px */ |
| rounded-se-full | border-start-end-radius: 9999px; |
| rounded-ee-none | border-end-end-radius: 0px; |
| rounded-ee-sm | border-end-end-radius: 0.125rem; /* 2px */ |
| rounded-ee | border-end-end-radius: 0.25rem; /* 4px */ |
| rounded-ee-md | border-end-end-radius: 0.375rem; /* 6px */ |
| rounded-ee-lg | border-end-end-radius: 0.5rem; /* 8px */ |
| rounded-ee-xl | border-end-end-radius: 0.75rem; /* 12px */ |
| rounded-ee-2xl | border-end-end-radius: 1rem; /* 16px */ |
| rounded-ee-3xl | border-end-end-radius: 1.5rem; /* 24px */ |
| rounded-ee-full | border-end-end-radius: 9999px; |
| rounded-es-none | border-end-start-radius: 0px; |
| rounded-es-sm | border-end-start-radius: 0.125rem; /* 2px */ |
| rounded-es | border-end-start-radius: 0.25rem; /* 4px */ |
| rounded-es-md | border-end-start-radius: 0.375rem; /* 6px */ |
| rounded-es-lg | border-end-start-radius: 0.5rem; /* 8px */ |
| rounded-es-xl | border-end-start-radius: 0.75rem; /* 12px */ |
| rounded-es-2xl | border-end-start-radius: 1rem; /* 16px */ |
| rounded-es-3xl | border-end-start-radius: 1.5rem; /* 24px */ |
| rounded-es-full | border-end-start-radius: 9999px; |
| rounded-tl-none | border-top-left-radius: 0px; |
| rounded-tl-sm | border-top-left-radius: 0.125rem; /* 2px */ |
| rounded-tl | border-top-left-radius: 0.25rem; /* 4px */ |
| rounded-tl-md | border-top-left-radius: 0.375rem; /* 6px */ |
| rounded-tl-lg | border-top-left-radius: 0.5rem; /* 8px */ |
| rounded-tl-xl | border-top-left-radius: 0.75rem; /* 12px */ |
| rounded-tl-2xl | border-top-left-radius: 1rem; /* 16px */ |
| rounded-tl-3xl | border-top-left-radius: 1.5rem; /* 24px */ |
| rounded-tl-full | border-top-left-radius: 9999px; |
| rounded-tr-none | border-top-right-radius: 0px; |
| rounded-tr-sm | border-top-right-radius: 0.125rem; /* 2px */ |
| rounded-tr | border-top-right-radius: 0.25rem; /* 4px */ |
| rounded-tr-md | border-top-right-radius: 0.375rem; /* 6px */ |
| rounded-tr-lg | border-top-right-radius: 0.5rem; /* 8px */ |
| rounded-tr-xl | border-top-right-radius: 0.75rem; /* 12px */ |
| rounded-tr-2xl | border-top-right-radius: 1rem; /* 16px */ |
| rounded-tr-3xl | border-top-right-radius: 1.5rem; /* 24px */ |
| rounded-tr-full | border-top-right-radius: 9999px; |
| rounded-br-none | border-bottom-right-radius: 0px; |
| rounded-br-sm | border-bottom-right-radius: 0.125rem; /* 2px */ |
| rounded-br | border-bottom-right-radius: 0.25rem; /* 4px */ |
| rounded-br-md | border-bottom-right-radius: 0.375rem; /* 6px */ |
| rounded-br-lg | border-bottom-right-radius: 0.5rem; /* 8px */ |
| rounded-br-xl | border-bottom-right-radius: 0.75rem; /* 12px */ |
| rounded-br-2xl | border-bottom-right-radius: 1rem; /* 16px */ |
| rounded-br-3xl | border-bottom-right-radius: 1.5rem; /* 24px */ |
| rounded-br-full | border-bottom-right-radius: 9999px; |
| rounded-bl-none | border-bottom-left-radius: 0px; |
| rounded-bl-sm | border-bottom-left-radius: 0.125rem; /* 2px */ |
| rounded-bl | border-bottom-left-radius: 0.25rem; /* 4px */ |
| rounded-bl-md | border-bottom-left-radius: 0.375rem; /* 6px */ |
| rounded-bl-lg | border-bottom-left-radius: 0.5rem; /* 8px */ |
| rounded-bl-xl | border-bottom-left-radius: 0.75rem; /* 12px */ |
| rounded-bl-2xl | border-bottom-left-radius: 1rem; /* 16px */ |
| rounded-bl-3xl | border-bottom-left-radius: 1.5rem; /* 24px */ |
| rounded-bl-full | border-bottom-left-radius: 9999px; |
边框宽度
| 类 | 对应的 CSS |
|---|---|
| border-0 | border-width: 0px; |
| border-2 | border-width: 2px; |
| border-4 | border-width: 4px; |
| border-8 | border-width: 8px; |
| border | border-width: 1px; |
| border-x-0 | border-left-width: 0px; border-right-width: 0px; |
| border-x-2 | border-left-width: 2px; border-right-width: 2px; |
| border-x-4 | border-left-width: 4px; border-right-width: 4px; |
| border-x-8 | border-left-width: 8px; border-right-width: 8px; |
| border-x | border-left-width: 1px; border-right-width: 1px; |
| border-y-0 | border-top-width: 0px; border-bottom-width: 0px; |
| border-y-2 | border-top-width: 2px; border-bottom-width: 2px; |
| border-y-4 | border-top-width: 4px; border-bottom-width: 4px; |
| border-y-8 | border-top-width: 8px; border-bottom-width: 8px; |
| border-y | border-top-width: 1px; border-bottom-width: 1px; |
| border-s-0 | border-inline-start-width: 0px; |
| border-s-2 | border-inline-start-width: 2px; |
| border-s-4 | border-inline-start-width: 4px; |
| border-s-8 | border-inline-start-width: 8px; |
| border-s | border-inline-start-width: 1px; |
| border-e-0 | border-inline-end-width: 0px; |
| border-e-2 | border-inline-end-width: 2px; |
| border-e-4 | border-inline-end-width: 4px; |
| border-e-8 | border-inline-end-width: 8px; |
| border-e | border-inline-end-width: 1px; |
| border-t-0 | border-top-width: 0px; |
| border-t-2 | border-top-width: 2px; |
| border-t-4 | border-top-width: 4px; |
| border-t-8 | border-top-width: 8px; |
| border-t | border-top-width: 1px; |
| border-r-0 | border-right-width: 0px; |
| border-r-2 | border-right-width: 2px; |
| border-r-4 | border-right-width: 4px; |
| border-r-8 | border-right-width: 8px; |
| border-r | border-right-width: 1px; |
| border-b-0 | border-bottom-width: 0px; |
| border-b-2 | border-bottom-width: 2px; |
| border-b-4 | border-bottom-width: 4px; |
| border-b-8 | border-bottom-width: 8px; |
| border-b | border-bottom-width: 1px; |
| border-l-0 | border-left-width: 0px; |
| border-l-2 | border-left-width: 2px; |
| border-l-4 | border-left-width: 4px; |
| border-l-8 | border-left-width: 8px; |
| border-l | border-left-width: 1px; |
边框颜色
| 类 | 对应的 CSS |
|---|---|
| border-inherit | border-color: inherit; |
| border-current | border-color: currentColor; |
| border-transparent | border-color: transparent; |
| border-black | border-color: rgb(0 0 0); |
| border-white | border-color: rgb(255 255 255); |
| border-slate-50 | border-color: rgb(248 250 252); |
| border-slate-100 | border-color: rgb(241 245 249); |
| border-slate-200 | border-color: rgb(226 232 240); |
| border-slate-300 | border-color: rgb(203 213 225); |
| border-slate-400 | border-color: rgb(148 163 184); |
| border-slate-500 | border-color: rgb(100 116 139); |
| border-slate-600 | border-color: rgb(71 85 105); |
| border-slate-700 | border-color: rgb(51 65 85); |
| border-slate-800 | border-color: rgb(30 41 59); |
| border-slate-900 | border-color: rgb(15 23 42); |
| border-slate-950 | border-color: rgb(2 6 23); |
| border-gray-50 | border-color: rgb(249 250 251); |
| border-gray-100 | border-color: rgb(243 244 246); |
| border-gray-200 | border-color: rgb(229 231 235); |
| border-gray-300 | border-color: rgb(209 213 219); |
| border-gray-400 | border-color: rgb(156 163 175); |
| border-gray-500 | border-color: rgb(107 114 128); |
| border-gray-600 | border-color: rgb(75 85 99); |
| border-gray-700 | border-color: rgb(55 65 81); |
| border-gray-800 | border-color: rgb(31 41 55); |
| border-gray-900 | border-color: rgb(17 24 39); |
| border-gray-950 | border-color: rgb(3 7 18); |
| border-zinc-50 | border-color: rgb(250 250 250); |
| border-zinc-100 | border-color: rgb(244 244 245); |
| border-zinc-200 | border-color: rgb(228 228 231); |
| border-zinc-300 | border-color: rgb(212 212 216); |
| border-zinc-400 | border-color: rgb(161 161 170); |
| border-zinc-500 | border-color: rgb(113 113 122); |
| border-zinc-600 | border-color: rgb(82 82 91); |
| border-zinc-700 | border-color: rgb(63 63 70); |
| border-zinc-800 | border-color: rgb(39 39 42); |
| border-zinc-900 | border-color: rgb(24 24 27); |
| border-zinc-950 | border-color: rgb(9 9 11); |
| border-neutral-50 | border-color: rgb(250 250 250); |
| border-neutral-100 | border-color: rgb(245 245 245); |
| border-neutral-200 | border-color: rgb(229 229 229); |
| border-neutral-300 | border-color: rgb(212 212 212); |
| border-neutral-400 | border-color: rgb(163 163 163); |
| border-neutral-500 | border-color: rgb(115 115 115); |
| border-neutral-600 | border-color: rgb(82 82 82); |
| border-neutral-700 | border-color: rgb(64 64 64); |
| border-neutral-800 | border-color: rgb(38 38 38); |
| border-neutral-900 | border-color: rgb(23 23 23); |
| border-neutral-950 | border-color: rgb(10 10 10); |
| border-stone-50 | border-color: rgb(250 250 249); |
| border-stone-100 | border-color: rgb(245 245 244); |
| border-stone-200 | border-color: rgb(231 229 228); |
| border-stone-300 | border-color: rgb(214 211 209); |
| border-stone-400 | border-color: rgb(168 162 158); |
| border-stone-500 | border-color: rgb(120 113 108); |
| border-stone-600 | border-color: rgb(87 83 78); |
| border-stone-700 | border-color: rgb(68 64 60); |
| border-stone-800 | border-color: rgb(41 37 36); |
| border-stone-900 | border-color: rgb(28 25 23); |
| border-stone-950 | border-color: rgb(12 10 9); |
| border-red-50 | border-color: rgb(254 242 242); |
| border-red-100 | border-color: rgb(254 226 226); |
| border-red-200 | border-color: rgb(254 202 202); |
| border-red-300 | border-color: rgb(252 165 165); |
| border-red-400 | border-color: rgb(248 113 113); |
| border-red-500 | border-color: rgb(239 68 68); |
| border-red-600 | border-color: rgb(220 38 38); |
| border-red-700 | border-color: rgb(185 28 28); |
| border-red-800 | border-color: rgb(153 27 27); |
| border-red-900 | border-color: rgb(127 29 29); |
| border-red-950 | border-color: rgb(69 10 10); |
| border-orange-50 | border-color: rgb(255 247 237); |
| border-orange-100 | border-color: rgb(255 237 213); |
| border-orange-200 | border-color: rgb(254 215 170); |
| border-orange-300 | border-color: rgb(253 186 116); |
| border-orange-400 | border-color: rgb(251 146 60); |
| border-orange-500 | border-color: rgb(249 115 22); |
| border-orange-600 | border-color: rgb(234 88 12); |
| border-orange-700 | border-color: rgb(194 65 12); |
| border-orange-800 | border-color: rgb(154 52 18); |
| border-orange-900 | border-color: rgb(124 45 18); |
| border-orange-950 | border-color: rgb(67 20 7); |
| border-amber-50 | border-color: rgb(255 251 235); |
| border-amber-100 | border-color: rgb(254 243 199); |
| border-amber-200 | border-color: rgb(253 230 138); |
| border-amber-300 | border-color: rgb(252 211 77); |
| border-amber-400 | border-color: rgb(251 191 36); |
| border-amber-500 | border-color: rgb(245 158 11); |
| border-amber-600 | border-color: rgb(217 119 6); |
| border-amber-700 | border-color: rgb(180 83 9); |
| border-amber-800 | border-color: rgb(146 64 14); |
| border-amber-900 | border-color: rgb(120 53 15); |
| border-amber-950 | border-color: rgb(69 26 3); |
| border-yellow-50 | border-color: rgb(254 252 232); |
| border-yellow-100 | border-color: rgb(254 249 195); |
| border-yellow-200 | border-color: rgb(254 240 138); |
| border-yellow-300 | border-color: rgb(253 224 71); |
| border-yellow-400 | border-color: rgb(250 204 21); |
| border-yellow-500 | border-color: rgb(234 179 8); |
| border-yellow-600 | border-color: rgb(202 138 4); |
| border-yellow-700 | border-color: rgb(161 98 7); |
| border-yellow-800 | border-color: rgb(133 77 14); |
| border-yellow-900 | border-color: rgb(113 63 18); |
| border-yellow-950 | border-color: rgb(66 32 6); |
| border-lime-50 | border-color: rgb(247 254 231); |
| border-lime-100 | border-color: rgb(236 252 203); |
| border-lime-200 | border-color: rgb(217 249 157); |
| border-lime-300 | border-color: rgb(190 242 100); |
| border-lime-400 | border-color: rgb(163 230 53); |
| border-lime-500 | border-color: rgb(132 204 22); |
| border-lime-600 | border-color: rgb(101 163 13); |
| border-lime-700 | border-color: rgb(77 124 15); |
| border-lime-800 | border-color: rgb(63 98 18); |
| border-lime-900 | border-color: rgb(54 83 20); |
| border-lime-950 | border-color: rgb(26 46 5); |
| border-green-50 | border-color: rgb(240 253 244); |
| border-green-100 | border-color: rgb(220 252 231); |
| border-green-200 | border-color: rgb(187 247 208); |
| border-green-300 | border-color: rgb(134 239 172); |
| border-green-400 | border-color: rgb(74 222 128); |
| border-green-500 | border-color: rgb(34 197 94); |
| border-green-600 | border-color: rgb(22 163 74); |
| border-green-700 | border-color: rgb(21 128 61); |
| border-green-800 | border-color: rgb(22 101 52); |
| border-green-900 | border-color: rgb(20 83 45); |
| border-green-950 | border-color: rgb(5 46 22); |
| border-emerald-50 | border-color: rgb(236 253 245); |
| border-emerald-100 | border-color: rgb(209 250 229); |
| border-emerald-200 | border-color: rgb(167 243 208); |
| border-emerald-300 | border-color: rgb(110 231 183); |
| border-emerald-400 | border-color: rgb(52 211 153); |
| border-emerald-500 | border-color: rgb(16 185 129); |
| border-emerald-600 | border-color: rgb(5 150 105); |
| border-emerald-700 | border-color: rgb(4 120 87); |
| border-emerald-800 | border-color: rgb(6 95 70); |
| border-emerald-900 | border-color: rgb(6 78 59); |
| border-emerald-950 | border-color: rgb(2 44 34); |
| border-teal-50 | border-color: rgb(240 253 250); |
| border-teal-100 | border-color: rgb(204 251 241); |
| border-teal-200 | border-color: rgb(153 246 228); |
| border-teal-300 | border-color: rgb(94 234 212); |
| border-teal-400 | border-color: rgb(45 212 191); |
| border-teal-500 | border-color: rgb(20 184 166); |
| border-teal-600 | border-color: rgb(13 148 136); |
| border-teal-700 | border-color: rgb(15 118 110); |
| border-teal-800 | border-color: rgb(17 94 89); |
| border-teal-900 | border-color: rgb(19 78 74); |
| border-teal-950 | border-color: rgb(4 47 46); |
| border-cyan-50 | border-color: rgb(236 254 255); |
| border-cyan-100 | border-color: rgb(207 250 254); |
| border-cyan-200 | border-color: rgb(165 243 252); |
| border-cyan-300 | border-color: rgb(103 232 249); |
| border-cyan-400 | border-color: rgb(34 211 238); |
| border-cyan-500 | border-color: rgb(6 182 212); |
| border-cyan-600 | border-color: rgb(8 145 178); |
| border-cyan-700 | border-color: rgb(14 116 144); |
| border-cyan-800 | border-color: rgb(21 94 117); |
| border-cyan-900 | border-color: rgb(22 78 99); |
| border-cyan-950 | border-color: rgb(8 51 68); |
| border-sky-50 | border-color: rgb(240 249 255); |
| border-sky-100 | border-color: rgb(224 242 254); |
| border-sky-200 | border-color: rgb(186 230 253); |
| border-sky-300 | border-color: rgb(125 211 252); |
| border-sky-400 | border-color: rgb(56 189 248); |
| border-sky-500 | border-color: rgb(14 165 233); |
| border-sky-600 | border-color: rgb(2 132 199); |
| border-sky-700 | border-color: rgb(3 105 161); |
| border-sky-800 | border-color: rgb(7 89 133); |
| border-sky-900 | border-color: rgb(12 74 110); |
| border-sky-950 | border-color: rgb(8 47 73); |
| border-blue-50 | border-color: rgb(239 246 255); |
| border-blue-100 | border-color: rgb(219 234 254); |
| border-blue-200 | border-color: rgb(191 219 254); |
| border-blue-300 | border-color: rgb(147 197 253); |
| border-blue-400 | border-color: rgb(96 165 250); |
| border-blue-500 | border-color: rgb(59 130 246); |
| border-blue-600 | border-color: rgb(37 99 235); |
| border-blue-700 | border-color: rgb(29 78 216); |
| border-blue-800 | border-color: rgb(30 64 175); |
| border-blue-900 | border-color: rgb(30 58 138); |
| border-blue-950 | border-color: rgb(23 37 84); |
| border-indigo-50 | border-color: rgb(238 242 255); |
| border-indigo-100 | border-color: rgb(224 231 255); |
| border-indigo-200 | border-color: rgb(199 210 254); |
| border-indigo-300 | border-color: rgb(165 180 252); |
| border-indigo-400 | border-color: rgb(129 140 248); |
| border-indigo-500 | border-color: rgb(99 102 241); |
| border-indigo-600 | border-color: rgb(79 70 229); |
| border-indigo-700 | border-color: rgb(67 56 202); |
| border-indigo-800 | border-color: rgb(55 48 163); |
| border-indigo-900 | border-color: rgb(49 46 129); |
| border-indigo-950 | border-color: rgb(30 27 75); |
| border-violet-50 | border-color: rgb(245 243 255); |
| border-violet-100 | border-color: rgb(237 233 254); |
| border-violet-200 | border-color: rgb(221 214 254); |
| border-violet-300 | border-color: rgb(196 181 253); |
| border-violet-400 | border-color: rgb(167 139 250); |
| border-violet-500 | border-color: rgb(139 92 246); |
| border-violet-600 | border-color: rgb(124 58 237); |
| border-violet-700 | border-color: rgb(109 40 217); |
| border-violet-800 | border-color: rgb(91 33 182); |
| border-violet-900 | border-color: rgb(76 29 149); |
| border-violet-950 | border-color: rgb(46 16 101); |
| border-purple-50 | border-color: rgb(250 245 255); |
| border-purple-100 | border-color: rgb(243 232 255); |
| border-purple-200 | border-color: rgb(233 213 255); |
| border-purple-300 | border-color: rgb(216 180 254); |
| border-purple-400 | border-color: rgb(192 132 252); |
| border-purple-500 | border-color: rgb(168 85 247); |
| border-purple-600 | border-color: rgb(147 51 234); |
| border-purple-700 | border-color: rgb(126 34 206); |
| border-purple-800 | border-color: rgb(107 33 168); |
| border-purple-900 | border-color: rgb(88 28 135); |
| border-purple-950 | border-color: rgb(59 7 100); |
| border-fuchsia-50 | border-color: rgb(253 244 255); |
| border-fuchsia-100 | border-color: rgb(250 232 255); |
| border-fuchsia-200 | border-color: rgb(245 208 254); |
| border-fuchsia-300 | border-color: rgb(240 171 252); |
| border-fuchsia-400 | border-color: rgb(232 121 249); |
| border-fuchsia-500 | border-color: rgb(217 70 239); |
| border-fuchsia-600 | border-color: rgb(192 38 211); |
| border-fuchsia-700 | border-color: rgb(162 28 175); |
| border-fuchsia-800 | border-color: rgb(134 25 143); |
| border-fuchsia-900 | border-color: rgb(112 26 117); |
| border-fuchsia-950 | border-color: rgb(74 4 78); |
| border-pink-50 | border-color: rgb(253 242 248); |
| border-pink-100 | border-color: rgb(252 231 243); |
| border-pink-200 | border-color: rgb(251 207 232); |
| border-pink-300 | border-color: rgb(249 168 212); |
| border-pink-400 | border-color: rgb(244 114 182); |
| border-pink-500 | border-color: rgb(236 72 153); |
| border-pink-600 | border-color: rgb(219 39 119); |
| border-pink-700 | border-color: rgb(190 24 93); |
| border-pink-800 | border-color: rgb(157 23 77); |
| border-pink-900 | border-color: rgb(131 24 67); |
| border-pink-950 | border-color: rgb(80 7 36); |
| border-rose-50 | border-color: rgb(255 241 242); |
| border-rose-100 | border-color: rgb(255 228 230); |
| border-rose-200 | border-color: rgb(254 205 211); |
| border-rose-300 | border-color: rgb(253 164 175); |
| border-rose-400 | border-color: rgb(251 113 133); |
| border-rose-500 | border-color: rgb(244 63 94); |
| border-rose-600 | border-color: rgb(225 29 72); |
| border-rose-700 | border-color: rgb(190 18 60); |
| border-rose-800 | border-color: rgb(159 18 57); |
| border-rose-900 | border-color: rgb(136 19 55); |
| border-rose-950 | border-color: rgb(76 5 25); |
| border-x-inherit | border-left-color: inherit; border-right-color: inherit; |
| border-x-current | border-left-color: currentColor; border-right-color: currentColor; |
| border-x-transparent | border-left-color: transparent; border-right-color: transparent; |
| border-x-black | border-left-color: rgb(0 0 0); border-right-color: rgb(0 0 0); |
| border-x-white | border-left-color: rgb(255 255 255); border-right-color: rgb(255 255 255); |
| border-x-slate-50 | border-left-color: rgb(248 250 252); border-right-color: rgb(248 250 252); |
| border-x-slate-100 | border-left-color: rgb(241 245 249); border-right-color: rgb(241 245 249); |
| border-x-slate-200 | border-left-color: rgb(226 232 240); border-right-color: rgb(226 232 240); |
| border-x-slate-300 | border-left-color: rgb(203 213 225); border-right-color: rgb(203 213 225); |
| border-x-slate-400 | border-left-color: rgb(148 163 184); border-right-color: rgb(148 163 184); |
| border-x-slate-500 | border-left-color: rgb(100 116 139); border-right-color: rgb(100 116 139); |
| border-x-slate-600 | border-left-color: rgb(71 85 105); border-right-color: rgb(71 85 105); |
| border-x-slate-700 | border-left-color: rgb(51 65 85); border-right-color: rgb(51 65 85); |
| border-x-slate-800 | border-left-color: rgb(30 41 59); border-right-color: rgb(30 41 59); |
| border-x-slate-900 | border-left-color: rgb(15 23 42); border-right-color: rgb(15 23 42); |
| border-x-slate-950 | border-left-color: rgb(2 6 23); border-right-color: rgb(2 6 23); |
| border-x-gray-50 | border-left-color: rgb(249 250 251); border-right-color: rgb(249 250 251); |
| border-x-gray-100 | border-left-color: rgb(243 244 246); border-right-color: rgb(243 244 246); |
| border-x-gray-200 | border-left-color: rgb(229 231 235); border-right-color: rgb(229 231 235); |
| border-x-gray-300 | border-left-color: rgb(209 213 219); border-right-color: rgb(209 213 219); |
| border-x-gray-400 | border-left-color: rgb(156 163 175); border-right-color: rgb(156 163 175); |
| border-x-gray-500 | border-left-color: rgb(107 114 128); border-right-color: rgb(107 114 128); |
| border-x-gray-600 | border-left-color: rgb(75 85 99); border-right-color: rgb(75 85 99); |
| border-x-gray-700 | border-left-color: rgb(55 65 81); border-right-color: rgb(55 65 81); |
| border-x-gray-800 | border-left-color: rgb(31 41 55); border-right-color: rgb(31 41 55); |
| border-x-gray-900 | border-left-color: rgb(17 24 39); border-right-color: rgb(17 24 39); |
| border-x-gray-950 | border-left-color: rgb(3 7 18); border-right-color: rgb(3 7 18); |
| border-x-zinc-50 | border-left-color: rgb(250 250 250); border-right-color: rgb(250 250 250); |
| border-x-zinc-100 | border-left-color: rgb(244 244 245); border-right-color: rgb(244 244 245); |
| border-x-zinc-200 | border-left-color: rgb(228 228 231); border-right-color: rgb(228 228 231); |
| border-x-zinc-300 | border-left-color: rgb(212 212 216); border-right-color: rgb(212 212 216); |
| border-x-zinc-400 | border-left-color: rgb(161 161 170); border-right-color: rgb(161 161 170); |
| border-x-zinc-500 | border-left-color: rgb(113 113 122); border-right-color: rgb(113 113 122); |
| border-x-zinc-600 | border-left-color: rgb(82 82 91); border-right-color: rgb(82 82 91); |
| border-x-zinc-700 | border-left-color: rgb(63 63 70); border-right-color: rgb(63 63 70); |
| border-x-zinc-800 | border-left-color: rgb(39 39 42); border-right-color: rgb(39 39 42); |
| border-x-zinc-900 | border-left-color: rgb(24 24 27); border-right-color: rgb(24 24 27); |
| border-x-zinc-950 | border-left-color: rgb(9 9 11); border-right-color: rgb(9 9 11); |
| border-x-neutral-50 | border-left-color: rgb(250 250 250); border-right-color: rgb(250 250 250); |
| border-x-neutral-100 | border-left-color: rgb(245 245 245); border-right-color: rgb(245 245 245); |
| border-x-neutral-200 | border-left-color: rgb(229 229 229); border-right-color: rgb(229 229 229); |
| border-x-neutral-300 | border-left-color: rgb(212 212 212); border-right-color: rgb(212 212 212); |
| border-x-neutral-400 | border-left-color: rgb(163 163 163); border-right-color: rgb(163 163 163); |
| border-x-neutral-500 | border-left-color: rgb(115 115 115); border-right-color: rgb(115 115 115); |
| border-x-neutral-600 | border-left-color: rgb(82 82 82); border-right-color: rgb(82 82 82); |
| border-x-neutral-700 | border-left-color: rgb(64 64 64); border-right-color: rgb(64 64 64); |
| border-x-neutral-800 | border-left-color: rgb(38 38 38); border-right-color: rgb(38 38 38); |
| border-x-neutral-900 | border-left-color: rgb(23 23 23); border-right-color: rgb(23 23 23); |
| border-x-neutral-950 | border-left-color: rgb(10 10 10); border-right-color: rgb(10 10 10); |
| border-x-stone-50 | border-left-color: rgb(250 250 249); border-right-color: rgb(250 250 249); |
| border-x-stone-100 | border-left-color: rgb(245 245 244); border-right-color: rgb(245 245 244); |
| border-x-stone-200 | border-left-color: rgb(231 229 228); border-right-color: rgb(231 229 228); |
| border-x-stone-300 | border-left-color: rgb(214 211 209); border-right-color: rgb(214 211 209); |
| border-x-stone-400 | border-left-color: rgb(168 162 158); border-right-color: rgb(168 162 158); |
| border-x-stone-500 | border-left-color: rgb(120 113 108); border-right-color: rgb(120 113 108); |
| border-x-stone-600 | border-left-color: rgb(87 83 78); border-right-color: rgb(87 83 78); |
| border-x-stone-700 | border-left-color: rgb(68 64 60); border-right-color: rgb(68 64 60); |
| border-x-stone-800 | border-left-color: rgb(41 37 36); border-right-color: rgb(41 37 36); |
| border-x-stone-900 | border-left-color: rgb(28 25 23); border-right-color: rgb(28 25 23); |
| border-x-stone-950 | border-left-color: rgb(12 10 9); border-right-color: rgb(12 10 9); |
| border-x-red-50 | border-left-color: rgb(254 242 242); border-right-color: rgb(254 242 242); |
| border-x-red-100 | border-left-color: rgb(254 226 226); border-right-color: rgb(254 226 226); |
| border-x-red-200 | border-left-color: rgb(254 202 202); border-right-color: rgb(254 202 202); |
| border-x-red-300 | border-left-color: rgb(252 165 165); border-right-color: rgb(252 165 165); |
| border-x-red-400 | border-left-color: rgb(248 113 113); border-right-color: rgb(248 113 113); |
| border-x-red-500 | border-left-color: rgb(239 68 68); border-right-color: rgb(239 68 68); |
| border-x-red-600 | border-left-color: rgb(220 38 38); border-right-color: rgb(220 38 38); |
| border-x-red-700 | border-left-color: rgb(185 28 28); border-right-color: rgb(185 28 28); |
| border-x-red-800 | border-left-color: rgb(153 27 27); border-right-color: rgb(153 27 27); |
| border-x-red-900 | border-left-color: rgb(127 29 29); border-right-color: rgb(127 29 29); |
| border-x-red-950 | border-left-color: rgb(69 10 10); border-right-color: rgb(69 10 10); |
| border-x-orange-50 | border-left-color: rgb(255 247 237); border-right-color: rgb(255 247 237); |
| border-x-orange-100 | border-left-color: rgb(255 237 213); border-right-color: rgb(255 237 213); |
| border-x-orange-200 | border-left-color: rgb(254 215 170); border-right-color: rgb(254 215 170); |
| border-x-orange-300 | border-left-color: rgb(253 186 116); border-right-color: rgb(253 186 116); |
| border-x-orange-400 | border-left-color: rgb(251 146 60); border-right-color: rgb(251 146 60); |
| border-x-orange-500 | border-left-color: rgb(249 115 22); border-right-color: rgb(249 115 22); |
| border-x-orange-600 | border-left-color: rgb(234 88 12); border-right-color: rgb(234 88 12); |
| border-x-orange-700 | border-left-color: rgb(194 65 12); border-right-color: rgb(194 65 12); |
| border-x-orange-800 | border-left-color: rgb(154 52 18); border-right-color: rgb(154 52 18); |
| border-x-orange-900 | border-left-color: rgb(124 45 18); border-right-color: rgb(124 45 18); |
| border-x-orange-950 | border-left-color: rgb(67 20 7); border-right-color: rgb(67 20 7); |
| border-x-amber-50 | border-left-color: rgb(255 251 235); border-right-color: rgb(255 251 235); |
| border-x-amber-100 | border-left-color: rgb(254 243 199); border-right-color: rgb(254 243 199); |
| border-x-amber-200 | border-left-color: rgb(253 230 138); border-right-color: rgb(253 230 138); |
| border-x-amber-300 | border-left-color: rgb(252 211 77); border-right-color: rgb(252 211 77); |
| border-x-amber-400 | border-left-color: rgb(251 191 36); border-right-color: rgb(251 191 36); |
| border-x-amber-500 | border-left-color: rgb(245 158 11); border-right-color: rgb(245 158 11); |
| border-x-amber-600 | border-left-color: rgb(217 119 6); border-right-color: rgb(217 119 6); |
| border-x-amber-700 | border-left-color: rgb(180 83 9); border-right-color: rgb(180 83 9); |
| border-x-amber-800 | border-left-color: rgb(146 64 14); border-right-color: rgb(146 64 14); |
| border-x-amber-900 | border-left-color: rgb(120 53 15); border-right-color: rgb(120 53 15); |
| border-x-amber-950 | border-left-color: rgb(69 26 3); border-right-color: rgb(69 26 3); |
| border-x-yellow-50 | border-left-color: rgb(254 252 232); border-right-color: rgb(254 252 232); |
| border-x-yellow-100 | border-left-color: rgb(254 249 195); border-right-color: rgb(254 249 195); |
| border-x-yellow-200 | border-left-color: rgb(254 240 138); border-right-color: rgb(254 240 138); |
| border-x-yellow-300 | border-left-color: rgb(253 224 71); border-right-color: rgb(253 224 71); |
| border-x-yellow-400 | border-left-color: rgb(250 204 21); border-right-color: rgb(250 204 21); |
| border-x-yellow-500 | border-left-color: rgb(234 179 8); border-right-color: rgb(234 179 8); |
| border-x-yellow-600 | border-left-color: rgb(202 138 4); border-right-color: rgb(202 138 4); |
| border-x-yellow-700 | border-left-color: rgb(161 98 7); border-right-color: rgb(161 98 7); |
| border-x-yellow-800 | border-left-color: rgb(133 77 14); border-right-color: rgb(133 77 14); |
| border-x-yellow-900 | border-left-color: rgb(113 63 18); border-right-color: rgb(113 63 18); |
| border-x-yellow-950 | border-left-color: rgb(66 32 6); border-right-color: rgb(66 32 6); |
| border-x-lime-50 | border-left-color: rgb(247 254 231); border-right-color: rgb(247 254 231); |
| border-x-lime-100 | border-left-color: rgb(236 252 203); border-right-color: rgb(236 252 203); |
| border-x-lime-200 | border-left-color: rgb(217 249 157); border-right-color: rgb(217 249 157); |
| border-x-lime-300 | border-left-color: rgb(190 242 100); border-right-color: rgb(190 242 100); |
| border-x-lime-400 | border-left-color: rgb(163 230 53); border-right-color: rgb(163 230 53); |
| border-x-lime-500 | border-left-color: rgb(132 204 22); border-right-color: rgb(132 204 22); |
| border-x-lime-600 | border-left-color: rgb(101 163 13); border-right-color: rgb(101 163 13); |
| border-x-lime-700 | border-left-color: rgb(77 124 15); border-right-color: rgb(77 124 15); |
| border-x-lime-800 | border-left-color: rgb(63 98 18); border-right-color: rgb(63 98 18); |
| border-x-lime-900 | border-left-color: rgb(54 83 20); border-right-color: rgb(54 83 20); |
| border-x-lime-950 | border-left-color: rgb(26 46 5); border-right-color: rgb(26 46 5); |
| border-x-green-50 | border-left-color: rgb(240 253 244); border-right-color: rgb(240 253 244); |
| border-x-green-100 | border-left-color: rgb(220 252 231); border-right-color: rgb(220 252 231); |
| border-x-green-200 | border-left-color: rgb(187 247 208); border-right-color: rgb(187 247 208); |
| border-x-green-300 | border-left-color: rgb(134 239 172); border-right-color: rgb(134 239 172); |
| border-x-green-400 | border-left-color: rgb(74 222 128); border-right-color: rgb(74 222 128); |
| border-x-green-500 | border-left-color: rgb(34 197 94); border-right-color: rgb(34 197 94); |
| border-x-green-600 | border-left-color: rgb(22 163 74); border-right-color: rgb(22 163 74); |
| border-x-green-700 | border-left-color: rgb(21 128 61); border-right-color: rgb(21 128 61); |
| border-x-green-800 | border-left-color: rgb(22 101 52); border-right-color: rgb(22 101 52); |
| border-x-green-900 | border-left-color: rgb(20 83 45); border-right-color: rgb(20 83 45); |
| border-x-green-950 | border-left-color: rgb(5 46 22); border-right-color: rgb(5 46 22); |
| border-x-emerald-50 | border-left-color: rgb(236 253 245); border-right-color: rgb(236 253 245); |
| border-x-emerald-100 | border-left-color: rgb(209 250 229); border-right-color: rgb(209 250 229); |
| border-x-emerald-200 | border-left-color: rgb(167 243 208); border-right-color: rgb(167 243 208); |
| border-x-emerald-300 | border-left-color: rgb(110 231 183); border-right-color: rgb(110 231 183); |
| border-x-emerald-400 | border-left-color: rgb(52 211 153); border-right-color: rgb(52 211 153); |
| border-x-emerald-500 | border-left-color: rgb(16 185 129); border-right-color: rgb(16 185 129); |
| border-x-emerald-600 | border-left-color: rgb(5 150 105); border-right-color: rgb(5 150 105); |
| border-x-emerald-700 | border-left-color: rgb(4 120 87); border-right-color: rgb(4 120 87); |
| border-x-emerald-800 | border-left-color: rgb(6 95 70); border-right-color: rgb(6 95 70); |
| border-x-emerald-900 | border-left-color: rgb(6 78 59); border-right-color: rgb(6 78 59); |
| border-x-emerald-950 | border-left-color: rgb(2 44 34); border-right-color: rgb(2 44 34); |
| border-x-teal-50 | border-left-color: rgb(240 253 250); border-right-color: rgb(240 253 250); |
| border-x-teal-100 | border-left-color: rgb(204 251 241); border-right-color: rgb(204 251 241); |
| border-x-teal-200 | border-left-color: rgb(153 246 228); border-right-color: rgb(153 246 228); |
| border-x-teal-300 | border-left-color: rgb(94 234 212); border-right-color: rgb(94 234 212); |
| border-x-teal-400 | border-left-color: rgb(45 212 191); border-right-color: rgb(45 212 191); |
| border-x-teal-500 | border-left-color: rgb(20 184 166); border-right-color: rgb(20 184 166); |
| border-x-teal-600 | border-left-color: rgb(13 148 136); border-right-color: rgb(13 148 136); |
| border-x-teal-700 | border-left-color: rgb(15 118 110); border-right-color: rgb(15 118 110); |
| border-x-teal-800 | border-left-color: rgb(17 94 89); border-right-color: rgb(17 94 89); |
| border-x-teal-900 | border-left-color: rgb(19 78 74); border-right-color: rgb(19 78 74); |
| border-x-teal-950 | border-left-color: rgb(4 47 46); border-right-color: rgb(4 47 46); |
| border-x-cyan-50 | border-left-color: rgb(236 254 255); border-right-color: rgb(236 254 255); |
| border-x-cyan-100 | border-left-color: rgb(207 250 254); border-right-color: rgb(207 250 254); |
| border-x-cyan-200 | border-left-color: rgb(165 243 252); border-right-color: rgb(165 243 252); |
| border-x-cyan-300 | border-left-color: rgb(103 232 249); border-right-color: rgb(103 232 249); |
| border-x-cyan-400 | border-left-color: rgb(34 211 238); border-right-color: rgb(34 211 238); |
| border-x-cyan-500 | border-left-color: rgb(6 182 212); border-right-color: rgb(6 182 212); |
| border-x-cyan-600 | border-left-color: rgb(8 145 178); border-right-color: rgb(8 145 178); |
| border-x-cyan-700 | border-left-color: rgb(14 116 144); border-right-color: rgb(14 116 144); |
| border-x-cyan-800 | border-left-color: rgb(21 94 117); border-right-color: rgb(21 94 117); |
| border-x-cyan-900 | border-left-color: rgb(22 78 99); border-right-color: rgb(22 78 99); |
| border-x-cyan-950 | border-left-color: rgb(8 51 68); border-right-color: rgb(8 51 68); |
| border-x-sky-50 | border-left-color: rgb(240 249 255); border-right-color: rgb(240 249 255); |
| border-x-sky-100 | border-left-color: rgb(224 242 254); border-right-color: rgb(224 242 254); |
| border-x-sky-200 | border-left-color: rgb(186 230 253); border-right-color: rgb(186 230 253); |
| border-x-sky-300 | border-left-color: rgb(125 211 252); border-right-color: rgb(125 211 252); |
| border-x-sky-400 | border-left-color: rgb(56 189 248); border-right-color: rgb(56 189 248); |
| border-x-sky-500 | border-left-color: rgb(14 165 233); border-right-color: rgb(14 165 233); |
| border-x-sky-600 | border-left-color: rgb(2 132 199); border-right-color: rgb(2 132 199); |
| border-x-sky-700 | border-left-color: rgb(3 105 161); border-right-color: rgb(3 105 161); |
| border-x-sky-800 | border-left-color: rgb(7 89 133); border-right-color: rgb(7 89 133); |
| border-x-sky-900 | border-left-color: rgb(12 74 110); border-right-color: rgb(12 74 110); |
| border-x-sky-950 | border-left-color: rgb(8 47 73); border-right-color: rgb(8 47 73); |
| border-x-blue-50 | border-left-color: rgb(239 246 255); border-right-color: rgb(239 246 255); |
| border-x-blue-100 | border-left-color: rgb(219 234 254); border-right-color: rgb(219 234 254); |
| border-x-blue-200 | border-left-color: rgb(191 219 254); border-right-color: rgb(191 219 254); |
| border-x-blue-300 | border-left-color: rgb(147 197 253); border-right-color: rgb(147 197 253); |
| border-x-blue-400 | border-left-color: rgb(96 165 250); border-right-color: rgb(96 165 250); |
| border-x-blue-500 | border-left-color: rgb(59 130 246); border-right-color: rgb(59 130 246); |
| border-x-blue-600 | border-left-color: rgb(37 99 235); border-right-color: rgb(37 99 235); |
| border-x-blue-700 | border-left-color: rgb(29 78 216); border-right-color: rgb(29 78 216); |
| border-x-blue-800 | border-left-color: rgb(30 64 175); border-right-color: rgb(30 64 175); |
| border-x-blue-900 | border-left-color: rgb(30 58 138); border-right-color: rgb(30 58 138); |
| border-x-blue-950 | border-left-color: rgb(23 37 84); border-right-color: rgb(23 37 84); |
| border-x-indigo-50 | border-left-color: rgb(238 242 255); border-right-color: rgb(238 242 255); |
| border-x-indigo-100 | border-left-color: rgb(224 231 255); border-right-color: rgb(224 231 255); |
| border-x-indigo-200 | border-left-color: rgb(199 210 254); border-right-color: rgb(199 210 254); |
| border-x-indigo-300 | border-left-color: rgb(165 180 252); border-right-color: rgb(165 180 252); |
| border-x-indigo-400 | border-left-color: rgb(129 140 248); border-right-color: rgb(129 140 248); |
| border-x-indigo-500 | border-left-color: rgb(99 102 241); border-right-color: rgb(99 102 241); |
| border-x-indigo-600 | border-left-color: rgb(79 70 229); border-right-color: rgb(79 70 229); |
| border-x-indigo-700 | border-left-color: rgb(67 56 202); border-right-color: rgb(67 56 202); |
| border-x-indigo-800 | border-left-color: rgb(55 48 163); border-right-color: rgb(55 48 163); |
| border-x-indigo-900 | border-left-color: rgb(49 46 129); border-right-color: rgb(49 46 129); |
| border-x-indigo-950 | border-left-color: rgb(30 27 75); border-right-color: rgb(30 27 75); |
| border-x-violet-50 | border-left-color: rgb(245 243 255); border-right-color: rgb(245 243 255); |
| border-x-violet-100 | border-left-color: rgb(237 233 254); border-right-color: rgb(237 233 254); |
| border-x-violet-200 | border-left-color: rgb(221 214 254); border-right-color: rgb(221 214 254); |
| border-x-violet-300 | border-left-color: rgb(196 181 253); border-right-color: rgb(196 181 253); |
| border-x-violet-400 | border-left-color: rgb(167 139 250); border-right-color: rgb(167 139 250); |
| border-x-violet-500 | border-left-color: rgb(139 92 246); border-right-color: rgb(139 92 246); |
| border-x-violet-600 | border-left-color: rgb(124 58 237); border-right-color: rgb(124 58 237); |
| border-x-violet-700 | border-left-color: rgb(109 40 217); border-right-color: rgb(109 40 217); |
| border-x-violet-800 | border-left-color: rgb(91 33 182); border-right-color: rgb(91 33 182); |
| border-x-violet-900 | border-left-color: rgb(76 29 149); border-right-color: rgb(76 29 149); |
| border-x-violet-950 | border-left-color: rgb(46 16 101); border-right-color: rgb(46 16 101); |
| border-x-purple-50 | border-left-color: rgb(250 245 255); border-right-color: rgb(250 245 255); |
| border-x-purple-100 | border-left-color: rgb(243 232 255); border-right-color: rgb(243 232 255); |
| border-x-purple-200 | border-left-color: rgb(233 213 255); border-right-color: rgb(233 213 255); |
| border-x-purple-300 | border-left-color: rgb(216 180 254); border-right-color: rgb(216 180 254); |
| border-x-purple-400 | border-left-color: rgb(192 132 252); border-right-color: rgb(192 132 252); |
| border-x-purple-500 | border-left-color: rgb(168 85 247); border-right-color: rgb(168 85 247); |
| border-x-purple-600 | border-left-color: rgb(147 51 234); border-right-color: rgb(147 51 234); |
| border-x-purple-700 | border-left-color: rgb(126 34 206); border-right-color: rgb(126 34 206); |
| border-x-purple-800 | border-left-color: rgb(107 33 168); border-right-color: rgb(107 33 168); |
| border-x-purple-900 | border-left-color: rgb(88 28 135); border-right-color: rgb(88 28 135); |
| border-x-purple-950 | border-left-color: rgb(59 7 100); border-right-color: rgb(59 7 100); |
| border-x-fuchsia-50 | border-left-color: rgb(253 244 255); border-right-color: rgb(253 244 255); |
| border-x-fuchsia-100 | border-left-color: rgb(250 232 255); border-right-color: rgb(250 232 255); |
| border-x-fuchsia-200 | border-left-color: rgb(245 208 254); border-right-color: rgb(245 208 254); |
| border-x-fuchsia-300 | border-left-color: rgb(240 171 252); border-right-color: rgb(240 171 252); |
| border-x-fuchsia-400 | border-left-color: rgb(232 121 249); border-right-color: rgb(232 121 249); |
| border-x-fuchsia-500 | border-left-color: rgb(217 70 239); border-right-color: rgb(217 70 239); |
| border-x-fuchsia-600 | border-left-color: rgb(192 38 211); border-right-color: rgb(192 38 211); |
| border-x-fuchsia-700 | border-left-color: rgb(162 28 175); border-right-color: rgb(162 28 175); |
| border-x-fuchsia-800 | border-left-color: rgb(134 25 143); border-right-color: rgb(134 25 143); |
| border-x-fuchsia-900 | border-left-color: rgb(112 26 117); border-right-color: rgb(112 26 117); |
| border-x-fuchsia-950 | border-left-color: rgb(74 4 78); border-right-color: rgb(74 4 78); |
| border-x-pink-50 | border-left-color: rgb(253 242 248); border-right-color: rgb(253 242 248); |
| border-x-pink-100 | border-left-color: rgb(252 231 243); border-right-color: rgb(252 231 243); |
| border-x-pink-200 | border-left-color: rgb(251 207 232); border-right-color: rgb(251 207 232); |
| border-x-pink-300 | border-left-color: rgb(249 168 212); border-right-color: rgb(249 168 212); |
| border-x-pink-400 | border-left-color: rgb(244 114 182); border-right-color: rgb(244 114 182); |
| border-x-pink-500 | border-left-color: rgb(236 72 153); border-right-color: rgb(236 72 153); |
| border-x-pink-600 | border-left-color: rgb(219 39 119); border-right-color: rgb(219 39 119); |
| border-x-pink-700 | border-left-color: rgb(190 24 93); border-right-color: rgb(190 24 93); |
| border-x-pink-800 | border-left-color: rgb(157 23 77); border-right-color: rgb(157 23 77); |
| border-x-pink-900 | border-left-color: rgb(131 24 67); border-right-color: rgb(131 24 67); |
| border-x-pink-950 | border-left-color: rgb(80 7 36); border-right-color: rgb(80 7 36); |
| border-x-rose-50 | border-left-color: rgb(255 241 242); border-right-color: rgb(255 241 242); |
| border-x-rose-100 | border-left-color: rgb(255 228 230); border-right-color: rgb(255 228 230); |
| border-x-rose-200 | border-left-color: rgb(254 205 211); border-right-color: rgb(254 205 211); |
| border-x-rose-300 | border-left-color: rgb(253 164 175); border-right-color: rgb(253 164 175); |
| border-x-rose-400 | border-left-color: rgb(251 113 133); border-right-color: rgb(251 113 133); |
| border-x-rose-500 | border-left-color: rgb(244 63 94); border-right-color: rgb(244 63 94); |
| border-x-rose-600 | border-left-color: rgb(225 29 72); border-right-color: rgb(225 29 72); |
| border-x-rose-700 | border-left-color: rgb(190 18 60); border-right-color: rgb(190 18 60); |
| border-x-rose-800 | border-left-color: rgb(159 18 57); border-right-color: rgb(159 18 57); |
| border-x-rose-900 | border-left-color: rgb(136 19 55); border-right-color: rgb(136 19 55); |
| border-x-rose-950 | border-left-color: rgb(76 5 25); border-right-color: rgb(76 5 25); |
| border-y-inherit | border-top-color: inherit; border-bottom-color: inherit; |
| border-y-current | border-top-color: currentColor; border-bottom-color: currentColor; |
| border-y-transparent | border-top-color: transparent; border-bottom-color: transparent; |
| border-y-black | border-top-color: rgb(0 0 0); border-bottom-color: rgb(0 0 0); |
| border-y-white | border-top-color: rgb(255 255 255); border-bottom-color: rgb(255 255 255); |
| border-y-slate-50 | border-top-color: rgb(248 250 252); border-bottom-color: rgb(248 250 252); |
| border-y-slate-100 | border-top-color: rgb(241 245 249); border-bottom-color: rgb(241 245 249); |
| border-y-slate-200 | border-top-color: rgb(226 232 240); border-bottom-color: rgb(226 232 240); |
| border-y-slate-300 | border-top-color: rgb(203 213 225); border-bottom-color: rgb(203 213 225); |
| border-y-slate-400 | border-top-color: rgb(148 163 184); border-bottom-color: rgb(148 163 184); |
| border-y-slate-500 | border-top-color: rgb(100 116 139); border-bottom-color: rgb(100 116 139); |
| border-y-slate-600 | border-top-color: rgb(71 85 105); border-bottom-color: rgb(71 85 105); |
| border-y-slate-700 | border-top-color: rgb(51 65 85); border-bottom-color: rgb(51 65 85); |
| border-y-slate-800 | border-top-color: rgb(30 41 59); border-bottom-color: rgb(30 41 59); |
| border-y-slate-900 | border-top-color: rgb(15 23 42); border-bottom-color: rgb(15 23 42); |
| border-y-slate-950 | border-top-color: rgb(2 6 23); border-bottom-color: rgb(2 6 23); |
| border-y-gray-50 | border-top-color: rgb(249 250 251); border-bottom-color: rgb(249 250 251); |
| border-y-gray-100 | border-top-color: rgb(243 244 246); border-bottom-color: rgb(243 244 246); |
| border-y-gray-200 | border-top-color: rgb(229 231 235); border-bottom-color: rgb(229 231 235); |
| border-y-gray-300 | border-top-color: rgb(209 213 219); border-bottom-color: rgb(209 213 219); |
| border-y-gray-400 | border-top-color: rgb(156 163 175); border-bottom-color: rgb(156 163 175); |
| border-y-gray-500 | border-top-color: rgb(107 114 128); border-bottom-color: rgb(107 114 128); |
| border-y-gray-600 | border-top-color: rgb(75 85 99); border-bottom-color: rgb(75 85 99); |
| border-y-gray-700 | border-top-color: rgb(55 65 81); border-bottom-color: rgb(55 65 81); |
| border-y-gray-800 | border-top-color: rgb(31 41 55); border-bottom-color: rgb(31 41 55); |
| border-y-gray-900 | border-top-color: rgb(17 24 39); border-bottom-color: rgb(17 24 39); |
| border-y-gray-950 | border-top-color: rgb(3 7 18); border-bottom-color: rgb(3 7 18); |
| border-y-zinc-50 | border-top-color: rgb(250 250 250); border-bottom-color: rgb(250 250 250); |
| border-y-zinc-100 | border-top-color: rgb(244 244 245); border-bottom-color: rgb(244 244 245); |
| border-y-zinc-200 | border-top-color: rgb(228 228 231); border-bottom-color: rgb(228 228 231); |
| border-y-zinc-300 | border-top-color: rgb(212 212 216); border-bottom-color: rgb(212 212 216); |
| border-y-zinc-400 | border-top-color: rgb(161 161 170); border-bottom-color: rgb(161 161 170); |
| border-y-zinc-500 | border-top-color: rgb(113 113 122); border-bottom-color: rgb(113 113 122); |
| border-y-zinc-600 | border-top-color: rgb(82 82 91); border-bottom-color: rgb(82 82 91); |
| border-y-zinc-700 | border-top-color: rgb(63 63 70); border-bottom-color: rgb(63 63 70); |
| border-y-zinc-800 | border-top-color: rgb(39 39 42); border-bottom-color: rgb(39 39 42); |
| border-y-zinc-900 | border-top-color: rgb(24 24 27); border-bottom-color: rgb(24 24 27); |
| border-y-zinc-950 | border-top-color: rgb(9 9 11); border-bottom-color: rgb(9 9 11); |
| border-y-neutral-50 | border-top-color: rgb(250 250 250); border-bottom-color: rgb(250 250 250); |
| border-y-neutral-100 | border-top-color: rgb(245 245 245); border-bottom-color: rgb(245 245 245); |
| border-y-neutral-200 | border-top-color: rgb(229 229 229); border-bottom-color: rgb(229 229 229); |
| border-y-neutral-300 | border-top-color: rgb(212 212 212); border-bottom-color: rgb(212 212 212); |
| border-y-neutral-400 | border-top-color: rgb(163 163 163); border-bottom-color: rgb(163 163 163); |
| border-y-neutral-500 | border-top-color: rgb(115 115 115); border-bottom-color: rgb(115 115 115); |
| border-y-neutral-600 | border-top-color: rgb(82 82 82); border-bottom-color: rgb(82 82 82); |
| border-y-neutral-700 | border-top-color: rgb(64 64 64); border-bottom-color: rgb(64 64 64); |
| border-y-neutral-800 | border-top-color: rgb(38 38 38); border-bottom-color: rgb(38 38 38); |
| border-y-neutral-900 | border-top-color: rgb(23 23 23); border-bottom-color: rgb(23 23 23); |
| border-y-neutral-950 | border-top-color: rgb(10 10 10); border-bottom-color: rgb(10 10 10); |
| border-y-stone-50 | border-top-color: rgb(250 250 249); border-bottom-color: rgb(250 250 249); |
| border-y-stone-100 | border-top-color: rgb(245 245 244); border-bottom-color: rgb(245 245 244); |
| border-y-stone-200 | border-top-color: rgb(231 229 228); border-bottom-color: rgb(231 229 228); |
| border-y-stone-300 | border-top-color: rgb(214 211 209); border-bottom-color: rgb(214 211 209); |
| border-y-stone-400 | border-top-color: rgb(168 162 158); border-bottom-color: rgb(168 162 158); |
| border-y-stone-500 | border-top-color: rgb(120 113 108); border-bottom-color: rgb(120 113 108); |
| border-y-stone-600 | border-top-color: rgb(87 83 78); border-bottom-color: rgb(87 83 78); |
| border-y-stone-700 | border-top-color: rgb(68 64 60); border-bottom-color: rgb(68 64 60); |
| border-y-stone-800 | border-top-color: rgb(41 37 36); border-bottom-color: rgb(41 37 36); |
| border-y-stone-900 | border-top-color: rgb(28 25 23); border-bottom-color: rgb(28 25 23); |
| border-y-stone-950 | border-top-color: rgb(12 10 9); border-bottom-color: rgb(12 10 9); |
| border-y-red-50 | border-top-color: rgb(254 242 242); border-bottom-color: rgb(254 242 242); |
| border-y-red-100 | border-top-color: rgb(254 226 226); border-bottom-color: rgb(254 226 226); |
| border-y-red-200 | border-top-color: rgb(254 202 202); border-bottom-color: rgb(254 202 202); |
| border-y-red-300 | border-top-color: rgb(252 165 165); border-bottom-color: rgb(252 165 165); |
| border-y-red-400 | border-top-color: rgb(248 113 113); border-bottom-color: rgb(248 113 113); |
| border-y-red-500 | border-top-color: rgb(239 68 68); border-bottom-color: rgb(239 68 68); |
| border-y-red-600 | border-top-color: rgb(220 38 38); border-bottom-color: rgb(220 38 38); |
| border-y-red-700 | border-top-color: rgb(185 28 28); border-bottom-color: rgb(185 28 28); |
| border-y-red-800 | border-top-color: rgb(153 27 27); border-bottom-color: rgb(153 27 27); |
| border-y-red-900 | border-top-color: rgb(127 29 29); border-bottom-color: rgb(127 29 29); |
| border-y-red-950 | border-top-color: rgb(69 10 10); border-bottom-color: rgb(69 10 10); |
| border-y-orange-50 | border-top-color: rgb(255 247 237); border-bottom-color: rgb(255 247 237); |
| border-y-orange-100 | border-top-color: rgb(255 237 213); border-bottom-color: rgb(255 237 213); |
| border-y-orange-200 | border-top-color: rgb(254 215 170); border-bottom-color: rgb(254 215 170); |
| border-y-orange-300 | border-top-color: rgb(253 186 116); border-bottom-color: rgb(253 186 116); |
| border-y-orange-400 | border-top-color: rgb(251 146 60); border-bottom-color: rgb(251 146 60); |
| border-y-orange-500 | border-top-color: rgb(249 115 22); border-bottom-color: rgb(249 115 22); |
| border-y-orange-600 | border-top-color: rgb(234 88 12); border-bottom-color: rgb(234 88 12); |
| border-y-orange-700 | border-top-color: rgb(194 65 12); border-bottom-color: rgb(194 65 12); |
| border-y-orange-800 | border-top-color: rgb(154 52 18); border-bottom-color: rgb(154 52 18); |
| border-y-orange-900 | border-top-color: rgb(124 45 18); border-bottom-color: rgb(124 45 18); |
| border-y-orange-950 | border-top-color: rgb(67 20 7); border-bottom-color: rgb(67 20 7); |
| border-y-amber-50 | border-top-color: rgb(255 251 235); border-bottom-color: rgb(255 251 235); |
| border-y-amber-100 | border-top-color: rgb(254 243 199); border-bottom-color: rgb(254 243 199); |
| border-y-amber-200 | border-top-color: rgb(253 230 138); border-bottom-color: rgb(253 230 138); |
| border-y-amber-300 | border-top-color: rgb(252 211 77); border-bottom-color: rgb(252 211 77); |
| border-y-amber-400 | border-top-color: rgb(251 191 36); border-bottom-color: rgb(251 191 36); |
| border-y-amber-500 | border-top-color: rgb(245 158 11); border-bottom-color: rgb(245 158 11); |
| border-y-amber-600 | border-top-color: rgb(217 119 6); border-bottom-color: rgb(217 119 6); |
| border-y-amber-700 | border-top-color: rgb(180 83 9); border-bottom-color: rgb(180 83 9); |
| border-y-amber-800 | border-top-color: rgb(146 64 14); border-bottom-color: rgb(146 64 14); |
| border-y-amber-900 | border-top-color: rgb(120 53 15); border-bottom-color: rgb(120 53 15); |
| border-y-amber-950 | border-top-color: rgb(69 26 3); border-bottom-color: rgb(69 26 3); |
| border-y-yellow-50 | border-top-color: rgb(254 252 232); border-bottom-color: rgb(254 252 232); |
| border-y-yellow-100 | border-top-color: rgb(254 249 195); border-bottom-color: rgb(254 249 195); |
| border-y-yellow-200 | border-top-color: rgb(254 240 138); border-bottom-color: rgb(254 240 138); |
| border-y-yellow-300 | border-top-color: rgb(253 224 71); border-bottom-color: rgb(253 224 71); |
| border-y-yellow-400 | border-top-color: rgb(250 204 21); border-bottom-color: rgb(250 204 21); |
| border-y-yellow-500 | border-top-color: rgb(234 179 8); border-bottom-color: rgb(234 179 8); |
| border-y-yellow-600 | border-top-color: rgb(202 138 4); border-bottom-color: rgb(202 138 4); |
| border-y-yellow-700 | border-top-color: rgb(161 98 7); border-bottom-color: rgb(161 98 7); |
| border-y-yellow-800 | border-top-color: rgb(133 77 14); border-bottom-color: rgb(133 77 14); |
| border-y-yellow-900 | border-top-color: rgb(113 63 18); border-bottom-color: rgb(113 63 18); |
| border-y-yellow-950 | border-top-color: rgb(66 32 6); border-bottom-color: rgb(66 32 6); |
| border-y-lime-50 | border-top-color: rgb(247 254 231); border-bottom-color: rgb(247 254 231); |
| border-y-lime-100 | border-top-color: rgb(236 252 203); border-bottom-color: rgb(236 252 203); |
| border-y-lime-200 | border-top-color: rgb(217 249 157); border-bottom-color: rgb(217 249 157); |
| border-y-lime-300 | border-top-color: rgb(190 242 100); border-bottom-color: rgb(190 242 100); |
| border-y-lime-400 | border-top-color: rgb(163 230 53); border-bottom-color: rgb(163 230 53); |
| border-y-lime-500 | border-top-color: rgb(132 204 22); border-bottom-color: rgb(132 204 22); |
| border-y-lime-600 | border-top-color: rgb(101 163 13); border-bottom-color: rgb(101 163 13); |
| border-y-lime-700 | border-top-color: rgb(77 124 15); border-bottom-color: rgb(77 124 15); |
| border-y-lime-800 | border-top-color: rgb(63 98 18); border-bottom-color: rgb(63 98 18); |
| border-y-lime-900 | border-top-color: rgb(54 83 20); border-bottom-color: rgb(54 83 20); |
| border-y-lime-950 | border-top-color: rgb(26 46 5); border-bottom-color: rgb(26 46 5); |
| border-y-green-50 | border-top-color: rgb(240 253 244); border-bottom-color: rgb(240 253 244); |
| border-y-green-100 | border-top-color: rgb(220 252 231); border-bottom-color: rgb(220 252 231); |
| border-y-green-200 | border-top-color: rgb(187 247 208); border-bottom-color: rgb(187 247 208); |
| border-y-green-300 | border-top-color: rgb(134 239 172); border-bottom-color: rgb(134 239 172); |
| border-y-green-400 | border-top-color: rgb(74 222 128); border-bottom-color: rgb(74 222 128); |
| border-y-green-500 | border-top-color: rgb(34 197 94); border-bottom-color: rgb(34 197 94); |
| border-y-green-600 | border-top-color: rgb(22 163 74); border-bottom-color: rgb(22 163 74); |
| border-y-green-700 | border-top-color: rgb(21 128 61); border-bottom-color: rgb(21 128 61); |
| border-y-green-800 | border-top-color: rgb(22 101 52); border-bottom-color: rgb(22 101 52); |
| border-y-green-900 | border-top-color: rgb(20 83 45); border-bottom-color: rgb(20 83 45); |
| border-y-green-950 | border-top-color: rgb(5 46 22); border-bottom-color: rgb(5 46 22); |
| border-y-emerald-50 | border-top-color: rgb(236 253 245); border-bottom-color: rgb(236 253 245); |
| border-y-emerald-100 | border-top-color: rgb(209 250 229); border-bottom-color: rgb(209 250 229); |
| border-y-emerald-200 | border-top-color: rgb(167 243 208); border-bottom-color: rgb(167 243 208); |
| border-y-emerald-300 | border-top-color: rgb(110 231 183); border-bottom-color: rgb(110 231 183); |
| border-y-emerald-400 | border-top-color: rgb(52 211 153); border-bottom-color: rgb(52 211 153); |
| border-y-emerald-500 | border-top-color: rgb(16 185 129); border-bottom-color: rgb(16 185 129); |
| border-y-emerald-600 | border-top-color: rgb(5 150 105); border-bottom-color: rgb(5 150 105); |
| border-y-emerald-700 | border-top-color: rgb(4 120 87); border-bottom-color: rgb(4 120 87); |
| border-y-emerald-800 | border-top-color: rgb(6 95 70); border-bottom-color: rgb(6 95 70); |
| border-y-emerald-900 | border-top-color: rgb(6 78 59); border-bottom-color: rgb(6 78 59); |
| border-y-emerald-950 | border-top-color: rgb(2 44 34); border-bottom-color: rgb(2 44 34); |
| border-y-teal-50 | border-top-color: rgb(240 253 250); border-bottom-color: rgb(240 253 250); |
| border-y-teal-100 | border-top-color: rgb(204 251 241); border-bottom-color: rgb(204 251 241); |
| border-y-teal-200 | border-top-color: rgb(153 246 228); border-bottom-color: rgb(153 246 228); |
| border-y-teal-300 | border-top-color: rgb(94 234 212); border-bottom-color: rgb(94 234 212); |
| border-y-teal-400 | border-top-color: rgb(45 212 191); border-bottom-color: rgb(45 212 191); |
| border-y-teal-500 | border-top-color: rgb(20 184 166); border-bottom-color: rgb(20 184 166); |
| border-y-teal-600 | border-top-color: rgb(13 148 136); border-bottom-color: rgb(13 148 136); |
| border-y-teal-700 | border-top-color: rgb(15 118 110); border-bottom-color: rgb(15 118 110); |
| border-y-teal-800 | border-top-color: rgb(17 94 89); border-bottom-color: rgb(17 94 89); |
| border-y-teal-900 | border-top-color: rgb(19 78 74); border-bottom-color: rgb(19 78 74); |
| border-y-teal-950 | border-top-color: rgb(4 47 46); border-bottom-color: rgb(4 47 46); |
| border-y-cyan-50 | border-top-color: rgb(236 254 255); border-bottom-color: rgb(236 254 255); |
| border-y-cyan-100 | border-top-color: rgb(207 250 254); border-bottom-color: rgb(207 250 254); |
| border-y-cyan-200 | border-top-color: rgb(165 243 252); border-bottom-color: rgb(165 243 252); |
| border-y-cyan-300 | border-top-color: rgb(103 232 249); border-bottom-color: rgb(103 232 249); |
| border-y-cyan-400 | border-top-color: rgb(34 211 238); border-bottom-color: rgb(34 211 238); |
| border-y-cyan-500 | border-top-color: rgb(6 182 212); border-bottom-color: rgb(6 182 212); |
| border-y-cyan-600 | border-top-color: rgb(8 145 178); border-bottom-color: rgb(8 145 178); |
| border-y-cyan-700 | border-top-color: rgb(14 116 144); border-bottom-color: rgb(14 116 144); |
| border-y-cyan-800 | border-top-color: rgb(21 94 117); border-bottom-color: rgb(21 94 117); |
| border-y-cyan-900 | border-top-color: rgb(22 78 99); border-bottom-color: rgb(22 78 99); |
| border-y-cyan-950 | border-top-color: rgb(8 51 68); border-bottom-color: rgb(8 51 68); |
| border-y-sky-50 | border-top-color: rgb(240 249 255); border-bottom-color: rgb(240 249 255); |
| border-y-sky-100 | border-top-color: rgb(224 242 254); border-bottom-color: rgb(224 242 254); |
| border-y-sky-200 | border-top-color: rgb(186 230 253); border-bottom-color: rgb(186 230 253); |
| border-y-sky-300 | border-top-color: rgb(125 211 252); border-bottom-color: rgb(125 211 252); |
| border-y-sky-400 | border-top-color: rgb(56 189 248); border-bottom-color: rgb(56 189 248); |
| border-y-sky-500 | border-top-color: rgb(14 165 233); border-bottom-color: rgb(14 165 233); |
| border-y-sky-600 | border-top-color: rgb(2 132 199); border-bottom-color: rgb(2 132 199); |
| border-y-sky-700 | border-top-color: rgb(3 105 161); border-bottom-color: rgb(3 105 161); |
| border-y-sky-800 | border-top-color: rgb(7 89 133); border-bottom-color: rgb(7 89 133); |
| border-y-sky-900 | border-top-color: rgb(12 74 110); border-bottom-color: rgb(12 74 110); |
| border-y-sky-950 | border-top-color: rgb(8 47 73); border-bottom-color: rgb(8 47 73); |
| border-y-blue-50 | border-top-color: rgb(239 246 255); border-bottom-color: rgb(239 246 255); |
| border-y-blue-100 | border-top-color: rgb(219 234 254); border-bottom-color: rgb(219 234 254); |
| border-y-blue-200 | border-top-color: rgb(191 219 254); border-bottom-color: rgb(191 219 254); |
| border-y-blue-300 | border-top-color: rgb(147 197 253); border-bottom-color: rgb(147 197 253); |
| border-y-blue-400 | border-top-color: rgb(96 165 250); border-bottom-color: rgb(96 165 250); |
| border-y-blue-500 | border-top-color: rgb(59 130 246); border-bottom-color: rgb(59 130 246); |
| border-y-blue-600 | border-top-color: rgb(37 99 235); border-bottom-color: rgb(37 99 235); |
| border-y-blue-700 | border-top-color: rgb(29 78 216); border-bottom-color: rgb(29 78 216); |
| border-y-blue-800 | border-top-color: rgb(30 64 175); border-bottom-color: rgb(30 64 175); |
| border-y-blue-900 | border-top-color: rgb(30 58 138); border-bottom-color: rgb(30 58 138); |
| border-y-blue-950 | border-top-color: rgb(23 37 84); border-bottom-color: rgb(23 37 84); |
| border-y-indigo-50 | border-top-color: rgb(238 242 255); border-bottom-color: rgb(238 242 255); |
| border-y-indigo-100 | border-top-color: rgb(224 231 255); border-bottom-color: rgb(224 231 255); |
| border-y-indigo-200 | border-top-color: rgb(199 210 254); border-bottom-color: rgb(199 210 254); |
| border-y-indigo-300 | border-top-color: rgb(165 180 252); border-bottom-color: rgb(165 180 252); |
| border-y-indigo-400 | border-top-color: rgb(129 140 248); border-bottom-color: rgb(129 140 248); |
| border-y-indigo-500 | border-top-color: rgb(99 102 241); border-bottom-color: rgb(99 102 241); |
| border-y-indigo-600 | border-top-color: rgb(79 70 229); border-bottom-color: rgb(79 70 229); |
| border-y-indigo-700 | border-top-color: rgb(67 56 202); border-bottom-color: rgb(67 56 202); |
| border-y-indigo-800 | border-top-color: rgb(55 48 163); border-bottom-color: rgb(55 48 163); |
| border-y-indigo-900 | border-top-color: rgb(49 46 129); border-bottom-color: rgb(49 46 129); |
| border-y-indigo-950 | border-top-color: rgb(30 27 75); border-bottom-color: rgb(30 27 75); |
| border-y-violet-50 | border-top-color: rgb(245 243 255); border-bottom-color: rgb(245 243 255); |
| border-y-violet-100 | border-top-color: rgb(237 233 254); border-bottom-color: rgb(237 233 254); |
| border-y-violet-200 | border-top-color: rgb(221 214 254); border-bottom-color: rgb(221 214 254); |
| border-y-violet-300 | border-top-color: rgb(196 181 253); border-bottom-color: rgb(196 181 253); |
| border-y-violet-400 | border-top-color: rgb(167 139 250); border-bottom-color: rgb(167 139 250); |
| border-y-violet-500 | border-top-color: rgb(139 92 246); border-bottom-color: rgb(139 92 246); |
| border-y-violet-600 | border-top-color: rgb(124 58 237); border-bottom-color: rgb(124 58 237); |
| border-y-violet-700 | border-top-color: rgb(109 40 217); border-bottom-color: rgb(109 40 217); |
| border-y-violet-800 | border-top-color: rgb(91 33 182); border-bottom-color: rgb(91 33 182); |
| border-y-violet-900 | border-top-color: rgb(76 29 149); border-bottom-color: rgb(76 29 149); |
| border-y-violet-950 | border-top-color: rgb(46 16 101); border-bottom-color: rgb(46 16 101); |
| border-y-purple-50 | border-top-color: rgb(250 245 255); border-bottom-color: rgb(250 245 255); |
| border-y-purple-100 | border-top-color: rgb(243 232 255); border-bottom-color: rgb(243 232 255); |
| border-y-purple-200 | border-top-color: rgb(233 213 255); border-bottom-color: rgb(233 213 255); |
| border-y-purple-300 | border-top-color: rgb(216 180 254); border-bottom-color: rgb(216 180 254); |
| border-y-purple-400 | border-top-color: rgb(192 132 252); border-bottom-color: rgb(192 132 252); |
| border-y-purple-500 | border-top-color: rgb(168 85 247); border-bottom-color: rgb(168 85 247); |
| border-y-purple-600 | border-top-color: rgb(147 51 234); border-bottom-color: rgb(147 51 234); |
| border-y-purple-700 | border-top-color: rgb(126 34 206); border-bottom-color: rgb(126 34 206); |
| border-y-purple-800 | border-top-color: rgb(107 33 168); border-bottom-color: rgb(107 33 168); |
| border-y-purple-900 | border-top-color: rgb(88 28 135); border-bottom-color: rgb(88 28 135); |
| border-y-purple-950 | border-top-color: rgb(59 7 100); border-bottom-color: rgb(59 7 100); |
| border-y-fuchsia-50 | border-top-color: rgb(253 244 255); border-bottom-color: rgb(253 244 255); |
| border-y-fuchsia-100 | border-top-color: rgb(250 232 255); border-bottom-color: rgb(250 232 255); |
| border-y-fuchsia-200 | border-top-color: rgb(245 208 254); border-bottom-color: rgb(245 208 254); |
| border-y-fuchsia-300 | border-top-color: rgb(240 171 252); border-bottom-color: rgb(240 171 252); |
| border-y-fuchsia-400 | border-top-color: rgb(232 121 249); border-bottom-color: rgb(232 121 249); |
| border-y-fuchsia-500 | border-top-color: rgb(217 70 239); border-bottom-color: rgb(217 70 239); |
| border-y-fuchsia-600 | border-top-color: rgb(192 38 211); border-bottom-color: rgb(192 38 211); |
| border-y-fuchsia-700 | border-top-color: rgb(162 28 175); border-bottom-color: rgb(162 28 175); |
| border-y-fuchsia-800 | border-top-color: rgb(134 25 143); border-bottom-color: rgb(134 25 143); |
| border-y-fuchsia-900 | border-top-color: rgb(112 26 117); border-bottom-color: rgb(112 26 117); |
| border-y-fuchsia-950 | border-top-color: rgb(74 4 78); border-bottom-color: rgb(74 4 78); |
| border-y-pink-50 | border-top-color: rgb(253 242 248); border-bottom-color: rgb(253 242 248); |
| border-y-pink-100 | border-top-color: rgb(252 231 243); border-bottom-color: rgb(252 231 243); |
| border-y-pink-200 | border-top-color: rgb(251 207 232); border-bottom-color: rgb(251 207 232); |
| border-y-pink-300 | border-top-color: rgb(249 168 212); border-bottom-color: rgb(249 168 212); |
| border-y-pink-400 | border-top-color: rgb(244 114 182); border-bottom-color: rgb(244 114 182); |
| border-y-pink-500 | border-top-color: rgb(236 72 153); border-bottom-color: rgb(236 72 153); |
| border-y-pink-600 | border-top-color: rgb(219 39 119); border-bottom-color: rgb(219 39 119); |
| border-y-pink-700 | border-top-color: rgb(190 24 93); border-bottom-color: rgb(190 24 93); |
| border-y-pink-800 | border-top-color: rgb(157 23 77); border-bottom-color: rgb(157 23 77); |
| border-y-pink-900 | border-top-color: rgb(131 24 67); border-bottom-color: rgb(131 24 67); |
| border-y-pink-950 | border-top-color: rgb(80 7 36); border-bottom-color: rgb(80 7 36); |
| border-y-rose-50 | border-top-color: rgb(255 241 242); border-bottom-color: rgb(255 241 242); |
| border-y-rose-100 | border-top-color: rgb(255 228 230); border-bottom-color: rgb(255 228 230); |
| border-y-rose-200 | border-top-color: rgb(254 205 211); border-bottom-color: rgb(254 205 211); |
| border-y-rose-300 | border-top-color: rgb(253 164 175); border-bottom-color: rgb(253 164 175); |
| border-y-rose-400 | border-top-color: rgb(251 113 133); border-bottom-color: rgb(251 113 133); |
| border-y-rose-500 | border-top-color: rgb(244 63 94); border-bottom-color: rgb(244 63 94); |
| border-y-rose-600 | border-top-color: rgb(225 29 72); border-bottom-color: rgb(225 29 72); |
| border-y-rose-700 | border-top-color: rgb(190 18 60); border-bottom-color: rgb(190 18 60); |
| border-y-rose-800 | border-top-color: rgb(159 18 57); border-bottom-color: rgb(159 18 57); |
| border-y-rose-900 | border-top-color: rgb(136 19 55); border-bottom-color: rgb(136 19 55); |
| border-y-rose-950 | border-top-color: rgb(76 5 25); border-bottom-color: rgb(76 5 25); |
| border-s-inherit | border-inline-start-color: inherit; |
| border-s-current | border-inline-start-color: currentColor; |
| border-s-transparent | border-inline-start-color: transparent; |
| border-s-black | border-inline-start-color: rgb(0 0 0); |
| border-s-white | border-inline-start-color: rgb(255 255 255); |
| border-s-slate-50 | border-inline-start-color: rgb(248 250 252); |
| border-s-slate-100 | border-inline-start-color: rgb(241 245 249); |
| border-s-slate-200 | border-inline-start-color: rgb(226 232 240); |
| border-s-slate-300 | border-inline-start-color: rgb(203 213 225); |
| border-s-slate-400 | border-inline-start-color: rgb(148 163 184); |
| border-s-slate-500 | border-inline-start-color: rgb(100 116 139); |
| border-s-slate-600 | border-inline-start-color: rgb(71 85 105); |
| border-s-slate-700 | border-inline-start-color: rgb(51 65 85); |
| border-s-slate-800 | border-inline-start-color: rgb(30 41 59); |
| border-s-slate-900 | border-inline-start-color: rgb(15 23 42); |
| border-s-slate-950 | border-inline-start-color: rgb(2 6 23); |
| border-s-gray-50 | border-inline-start-color: rgb(249 250 251); |
| border-s-gray-100 | border-inline-start-color: rgb(243 244 246); |
| border-s-gray-200 | border-inline-start-color: rgb(229 231 235); |
| border-s-gray-300 | border-inline-start-color: rgb(209 213 219); |
| border-s-gray-400 | border-inline-start-color: rgb(156 163 175); |
| border-s-gray-500 | border-inline-start-color: rgb(107 114 128); |
| border-s-gray-600 | border-inline-start-color: rgb(75 85 99); |
| border-s-gray-700 | border-inline-start-color: rgb(55 65 81); |
| border-s-gray-800 | border-inline-start-color: rgb(31 41 55); |
| border-s-gray-900 | border-inline-start-color: rgb(17 24 39); |
| border-s-gray-950 | border-inline-start-color: rgb(3 7 18); |
| border-s-zinc-50 | border-inline-start-color: rgb(250 250 250); |
| border-s-zinc-100 | border-inline-start-color: rgb(244 244 245); |
| border-s-zinc-200 | border-inline-start-color: rgb(228 228 231); |
| border-s-zinc-300 | border-inline-start-color: rgb(212 212 216); |
| border-s-zinc-400 | border-inline-start-color: rgb(161 161 170); |
| border-s-zinc-500 | border-inline-start-color: rgb(113 113 122); |
| border-s-zinc-600 | border-inline-start-color: rgb(82 82 91); |
| border-s-zinc-700 | border-inline-start-color: rgb(63 63 70); |
| border-s-zinc-800 | border-inline-start-color: rgb(39 39 42); |
| border-s-zinc-900 | border-inline-start-color: rgb(24 24 27); |
| border-s-zinc-950 | border-inline-start-color: rgb(9 9 11); |
| border-s-neutral-50 | border-inline-start-color: rgb(250 250 250); |
| border-s-neutral-100 | border-inline-start-color: rgb(245 245 245); |
| border-s-neutral-200 | border-inline-start-color: rgb(229 229 229); |
| border-s-neutral-300 | border-inline-start-color: rgb(212 212 212); |
| border-s-neutral-400 | border-inline-start-color: rgb(163 163 163); |
| border-s-neutral-500 | border-inline-start-color: rgb(115 115 115); |
| border-s-neutral-600 | border-inline-start-color: rgb(82 82 82); |
| border-s-neutral-700 | border-inline-start-color: rgb(64 64 64); |
| border-s-neutral-800 | border-inline-start-color: rgb(38 38 38); |
| border-s-neutral-900 | border-inline-start-color: rgb(23 23 23); |
| border-s-neutral-950 | border-inline-start-color: rgb(10 10 10); |
| border-s-stone-50 | border-inline-start-color: rgb(250 250 249); |
| border-s-stone-100 | border-inline-start-color: rgb(245 245 244); |
| border-s-stone-200 | border-inline-start-color: rgb(231 229 228); |
| border-s-stone-300 | border-inline-start-color: rgb(214 211 209); |
| border-s-stone-400 | border-inline-start-color: rgb(168 162 158); |
| border-s-stone-500 | border-inline-start-color: rgb(120 113 108); |
| border-s-stone-600 | border-inline-start-color: rgb(87 83 78); |
| border-s-stone-700 | border-inline-start-color: rgb(68 64 60); |
| border-s-stone-800 | border-inline-start-color: rgb(41 37 36); |
| border-s-stone-900 | border-inline-start-color: rgb(28 25 23); |
| border-s-stone-950 | border-inline-start-color: rgb(12 10 9); |
| border-s-red-50 | border-inline-start-color: rgb(254 242 242); |
| border-s-red-100 | border-inline-start-color: rgb(254 226 226); |
| border-s-red-200 | border-inline-start-color: rgb(254 202 202); |
| border-s-red-300 | border-inline-start-color: rgb(252 165 165); |
| border-s-red-400 | border-inline-start-color: rgb(248 113 113); |
| border-s-red-500 | border-inline-start-color: rgb(239 68 68); |
| border-s-red-600 | border-inline-start-color: rgb(220 38 38); |
| border-s-red-700 | border-inline-start-color: rgb(185 28 28); |
| border-s-red-800 | border-inline-start-color: rgb(153 27 27); |
| border-s-red-900 | border-inline-start-color: rgb(127 29 29); |
| border-s-red-950 | border-inline-start-color: rgb(69 10 10); |
| border-s-orange-50 | border-inline-start-color: rgb(255 247 237); |
| border-s-orange-100 | border-inline-start-color: rgb(255 237 213); |
| border-s-orange-200 | border-inline-start-color: rgb(254 215 170); |
| border-s-orange-300 | border-inline-start-color: rgb(253 186 116); |
| border-s-orange-400 | border-inline-start-color: rgb(251 146 60); |
| border-s-orange-500 | border-inline-start-color: rgb(249 115 22); |
| border-s-orange-600 | border-inline-start-color: rgb(234 88 12); |
| border-s-orange-700 | border-inline-start-color: rgb(194 65 12); |
| border-s-orange-800 | border-inline-start-color: rgb(154 52 18); |
| border-s-orange-900 | border-inline-start-color: rgb(124 45 18); |
| border-s-orange-950 | border-inline-start-color: rgb(67 20 7); |
| border-s-amber-50 | border-inline-start-color: rgb(255 251 235); |
| border-s-amber-100 | border-inline-start-color: rgb(254 243 199); |
| border-s-amber-200 | border-inline-start-color: rgb(253 230 138); |
| border-s-amber-300 | border-inline-start-color: rgb(252 211 77); |
| border-s-amber-400 | border-inline-start-color: rgb(251 191 36); |
| border-s-amber-500 | border-inline-start-color: rgb(245 158 11); |
| border-s-amber-600 | border-inline-start-color: rgb(217 119 6); |
| border-s-amber-700 | border-inline-start-color: rgb(180 83 9); |
| border-s-amber-800 | border-inline-start-color: rgb(146 64 14); |
| border-s-amber-900 | border-inline-start-color: rgb(120 53 15); |
| border-s-amber-950 | border-inline-start-color: rgb(69 26 3); |
| border-s-yellow-50 | border-inline-start-color: rgb(254 252 232); |
| border-s-yellow-100 | border-inline-start-color: rgb(254 249 195); |
| border-s-yellow-200 | border-inline-start-color: rgb(254 240 138); |
| border-s-yellow-300 | border-inline-start-color: rgb(253 224 71); |
| border-s-yellow-400 | border-inline-start-color: rgb(250 204 21); |
| border-s-yellow-500 | border-inline-start-color: rgb(234 179 8); |
| border-s-yellow-600 | border-inline-start-color: rgb(202 138 4); |
| border-s-yellow-700 | border-inline-start-color: rgb(161 98 7); |
| border-s-yellow-800 | border-inline-start-color: rgb(133 77 14); |
| border-s-yellow-900 | border-inline-start-color: rgb(113 63 18); |
| border-s-yellow-950 | border-inline-start-color: rgb(66 32 6); |
| border-s-lime-50 | border-inline-start-color: rgb(247 254 231); |
| border-s-lime-100 | border-inline-start-color: rgb(236 252 203); |
| border-s-lime-200 | border-inline-start-color: rgb(217 249 157); |
| border-s-lime-300 | border-inline-start-color: rgb(190 242 100); |
| border-s-lime-400 | border-inline-start-color: rgb(163 230 53); |
| border-s-lime-500 | border-inline-start-color: rgb(132 204 22); |
| border-s-lime-600 | border-inline-start-color: rgb(101 163 13); |
| border-s-lime-700 | border-inline-start-color: rgb(77 124 15); |
| border-s-lime-800 | border-inline-start-color: rgb(63 98 18); |
| border-s-lime-900 | border-inline-start-color: rgb(54 83 20); |
| border-s-lime-950 | border-inline-start-color: rgb(26 46 5); |
| border-s-green-50 | border-inline-start-color: rgb(240 253 244); |
| border-s-green-100 | border-inline-start-color: rgb(220 252 231); |
| border-s-green-200 | border-inline-start-color: rgb(187 247 208); |
| border-s-green-300 | border-inline-start-color: rgb(134 239 172); |
| border-s-green-400 | border-inline-start-color: rgb(74 222 128); |
| border-s-green-500 | border-inline-start-color: rgb(34 197 94); |
| border-s-green-600 | border-inline-start-color: rgb(22 163 74); |
| border-s-green-700 | border-inline-start-color: rgb(21 128 61); |
| border-s-green-800 | border-inline-start-color: rgb(22 101 52); |
| border-s-green-900 | border-inline-start-color: rgb(20 83 45); |
| border-s-green-950 | border-inline-start-color: rgb(5 46 22); |
| border-s-emerald-50 | border-inline-start-color: rgb(236 253 245); |
| border-s-emerald-100 | border-inline-start-color: rgb(209 250 229); |
| border-s-emerald-200 | border-inline-start-color: rgb(167 243 208); |
| border-s-emerald-300 | border-inline-start-color: rgb(110 231 183); |
| border-s-emerald-400 | border-inline-start-color: rgb(52 211 153); |
| border-s-emerald-500 | border-inline-start-color: rgb(16 185 129); |
| border-s-emerald-600 | border-inline-start-color: rgb(5 150 105); |
| border-s-emerald-700 | border-inline-start-color: rgb(4 120 87); |
| border-s-emerald-800 | border-inline-start-color: rgb(6 95 70); |
| border-s-emerald-900 | border-inline-start-color: rgb(6 78 59); |
| border-s-emerald-950 | border-inline-start-color: rgb(2 44 34); |
| border-s-teal-50 | border-inline-start-color: rgb(240 253 250); |
| border-s-teal-100 | border-inline-start-color: rgb(204 251 241); |
| border-s-teal-200 | border-inline-start-color: rgb(153 246 228); |
| border-s-teal-300 | border-inline-start-color: rgb(94 234 212); |
| border-s-teal-400 | border-inline-start-color: rgb(45 212 191); |
| border-s-teal-500 | border-inline-start-color: rgb(20 184 166); |
| border-s-teal-600 | border-inline-start-color: rgb(13 148 136); |
| border-s-teal-700 | border-inline-start-color: rgb(15 118 110); |
| border-s-teal-800 | border-inline-start-color: rgb(17 94 89); |
| border-s-teal-900 | border-inline-start-color: rgb(19 78 74); |
| border-s-teal-950 | border-inline-start-color: rgb(4 47 46); |
| border-s-cyan-50 | border-inline-start-color: rgb(236 254 255); |
| border-s-cyan-100 | border-inline-start-color: rgb(207 250 254); |
| border-s-cyan-200 | border-inline-start-color: rgb(165 243 252); |
| border-s-cyan-300 | border-inline-start-color: rgb(103 232 249); |
| border-s-cyan-400 | border-inline-start-color: rgb(34 211 238); |
| border-s-cyan-500 | border-inline-start-color: rgb(6 182 212); |
| border-s-cyan-600 | border-inline-start-color: rgb(8 145 178); |
| border-s-cyan-700 | border-inline-start-color: rgb(14 116 144); |
| border-s-cyan-800 | border-inline-start-color: rgb(21 94 117); |
| border-s-cyan-900 | border-inline-start-color: rgb(22 78 99); |
| border-s-cyan-950 | border-inline-start-color: rgb(8 51 68); |
| border-s-sky-50 | border-inline-start-color: rgb(240 249 255); |
| border-s-sky-100 | border-inline-start-color: rgb(224 242 254); |
| border-s-sky-200 | border-inline-start-color: rgb(186 230 253); |
| border-s-sky-300 | border-inline-start-color: rgb(125 211 252); |
| border-s-sky-400 | border-inline-start-color: rgb(56 189 248); |
| border-s-sky-500 | border-inline-start-color: rgb(14 165 233); |
| border-s-sky-600 | border-inline-start-color: rgb(2 132 199); |
| border-s-sky-700 | border-inline-start-color: rgb(3 105 161); |
| border-s-sky-800 | border-inline-start-color: rgb(7 89 133); |
| border-s-sky-900 | border-inline-start-color: rgb(12 74 110); |
| border-s-sky-950 | border-inline-start-color: rgb(8 47 73); |
| border-s-blue-50 | border-inline-start-color: rgb(239 246 255); |
| border-s-blue-100 | border-inline-start-color: rgb(219 234 254); |
| border-s-blue-200 | border-inline-start-color: rgb(191 219 254); |
| border-s-blue-300 | border-inline-start-color: rgb(147 197 253); |
| border-s-blue-400 | border-inline-start-color: rgb(96 165 250); |
| border-s-blue-500 | border-inline-start-color: rgb(59 130 246); |
| border-s-blue-600 | border-inline-start-color: rgb(37 99 235); |
| border-s-blue-700 | border-inline-start-color: rgb(29 78 216); |
| border-s-blue-800 | border-inline-start-color: rgb(30 64 175); |
| border-s-blue-900 | border-inline-start-color: rgb(30 58 138); |
| border-s-blue-950 | border-inline-start-color: rgb(23 37 84); |
| border-s-indigo-50 | border-inline-start-color: rgb(238 242 255); |
| border-s-indigo-100 | border-inline-start-color: rgb(224 231 255); |
| border-s-indigo-200 | border-inline-start-color: rgb(199 210 254); |
| border-s-indigo-300 | border-inline-start-color: rgb(165 180 252); |
| border-s-indigo-400 | border-inline-start-color: rgb(129 140 248); |
| border-s-indigo-500 | border-inline-start-color: rgb(99 102 241); |
| border-s-indigo-600 | border-inline-start-color: rgb(79 70 229); |
| border-s-indigo-700 | border-inline-start-color: rgb(67 56 202); |
| border-s-indigo-800 | border-inline-start-color: rgb(55 48 163); |
| border-s-indigo-900 | border-inline-start-color: rgb(49 46 129); |
| border-s-indigo-950 | border-inline-start-color: rgb(30 27 75); |
| border-s-violet-50 | border-inline-start-color: rgb(245 243 255); |
| border-s-violet-100 | border-inline-start-color: rgb(237 233 254); |
| border-s-violet-200 | border-inline-start-color: rgb(221 214 254); |
| border-s-violet-300 | border-inline-start-color: rgb(196 181 253); |
| border-s-violet-400 | border-inline-start-color: rgb(167 139 250); |
| border-s-violet-500 | border-inline-start-color: rgb(139 92 246); |
| border-s-violet-600 | border-inline-start-color: rgb(124 58 237); |
| border-s-violet-700 | border-inline-start-color: rgb(109 40 217); |
| border-s-violet-800 | border-inline-start-color: rgb(91 33 182); |
| border-s-violet-900 | border-inline-start-color: rgb(76 29 149); |
| border-s-violet-950 | border-inline-start-color: rgb(46 16 101); |
| border-s-purple-50 | border-inline-start-color: rgb(250 245 255); |
| border-s-purple-100 | border-inline-start-color: rgb(243 232 255); |
| border-s-purple-200 | border-inline-start-color: rgb(233 213 255); |
| border-s-purple-300 | border-inline-start-color: rgb(216 180 254); |
| border-s-purple-400 | border-inline-start-color: rgb(192 132 252); |
| border-s-purple-500 | border-inline-start-color: rgb(168 85 247); |
| border-s-purple-600 | border-inline-start-color: rgb(147 51 234); |
| border-s-purple-700 | border-inline-start-color: rgb(126 34 206); |
| border-s-purple-800 | border-inline-start-color: rgb(107 33 168); |
| border-s-purple-900 | border-inline-start-color: rgb(88 28 135); |
| border-s-purple-950 | border-inline-start-color: rgb(59 7 100); |
| border-s-fuchsia-50 | border-inline-start-color: rgb(253 244 255); |
| border-s-fuchsia-100 | border-inline-start-color: rgb(250 232 255); |
| border-s-fuchsia-200 | border-inline-start-color: rgb(245 208 254); |
| border-s-fuchsia-300 | border-inline-start-color: rgb(240 171 252); |
| border-s-fuchsia-400 | border-inline-start-color: rgb(232 121 249); |
| border-s-fuchsia-500 | border-inline-start-color: rgb(217 70 239); |
| border-s-fuchsia-600 | border-inline-start-color: rgb(192 38 211); |
| border-s-fuchsia-700 | border-inline-start-color: rgb(162 28 175); |
| border-s-fuchsia-800 | border-inline-start-color: rgb(134 25 143); |
| border-s-fuchsia-900 | border-inline-start-color: rgb(112 26 117); |
| border-s-fuchsia-950 | border-inline-start-color: rgb(74 4 78); |
| border-s-pink-50 | border-inline-start-color: rgb(253 242 248); |
| border-s-pink-100 | border-inline-start-color: rgb(252 231 243); |
| border-s-pink-200 | border-inline-start-color: rgb(251 207 232); |
| border-s-pink-300 | border-inline-start-color: rgb(249 168 212); |
| border-s-pink-400 | border-inline-start-color: rgb(244 114 182); |
| border-s-pink-500 | border-inline-start-color: rgb(236 72 153); |
| border-s-pink-600 | border-inline-start-color: rgb(219 39 119); |
| border-s-pink-700 | border-inline-start-color: rgb(190 24 93); |
| border-s-pink-800 | border-inline-start-color: rgb(157 23 77); |
| border-s-pink-900 | border-inline-start-color: rgb(131 24 67); |
| border-s-pink-950 | border-inline-start-color: rgb(80 7 36); |
| border-s-rose-50 | border-inline-start-color: rgb(255 241 242); |
| border-s-rose-100 | border-inline-start-color: rgb(255 228 230); |
| border-s-rose-200 | border-inline-start-color: rgb(254 205 211); |
| border-s-rose-300 | border-inline-start-color: rgb(253 164 175); |
| border-s-rose-400 | border-inline-start-color: rgb(251 113 133); |
| border-s-rose-500 | border-inline-start-color: rgb(244 63 94); |
| border-s-rose-600 | border-inline-start-color: rgb(225 29 72); |
| border-s-rose-700 | border-inline-start-color: rgb(190 18 60); |
| border-s-rose-800 | border-inline-start-color: rgb(159 18 57); |
| border-s-rose-900 | border-inline-start-color: rgb(136 19 55); |
| border-s-rose-950 | border-inline-start-color: rgb(76 5 25); |
| border-e-inherit | border-inline-end-color: inherit; |
| border-e-current | border-inline-end-color: currentColor; |
| border-e-transparent | border-inline-end-color: transparent; |
| border-e-black | border-inline-end-color: rgb(0 0 0); |
| border-e-white | border-inline-end-color: rgb(255 255 255); |
| border-e-slate-50 | border-inline-end-color: rgb(248 250 252); |
| border-e-slate-100 | border-inline-end-color: rgb(241 245 249); |
| border-e-slate-200 | border-inline-end-color: rgb(226 232 240); |
| border-e-slate-300 | border-inline-end-color: rgb(203 213 225); |
| border-e-slate-400 | border-inline-end-color: rgb(148 163 184); |
| border-e-slate-500 | border-inline-end-color: rgb(100 116 139); |
| border-e-slate-600 | border-inline-end-color: rgb(71 85 105); |
| border-e-slate-700 | border-inline-end-color: rgb(51 65 85); |
| border-e-slate-800 | border-inline-end-color: rgb(30 41 59); |
| border-e-slate-900 | border-inline-end-color: rgb(15 23 42); |
| border-e-slate-950 | border-inline-end-color: rgb(2 6 23); |
| border-e-gray-50 | border-inline-end-color: rgb(249 250 251); |
| border-e-gray-100 | border-inline-end-color: rgb(243 244 246); |
| border-e-gray-200 | border-inline-end-color: rgb(229 231 235); |
| border-e-gray-300 | border-inline-end-color: rgb(209 213 219); |
| border-e-gray-400 | border-inline-end-color: rgb(156 163 175); |
| border-e-gray-500 | border-inline-end-color: rgb(107 114 128); |
| border-e-gray-600 | border-inline-end-color: rgb(75 85 99); |
| border-e-gray-700 | border-inline-end-color: rgb(55 65 81); |
| border-e-gray-800 | border-inline-end-color: rgb(31 41 55); |
| border-e-gray-900 | border-inline-end-color: rgb(17 24 39); |
| border-e-gray-950 | border-inline-end-color: rgb(3 7 18); |
| border-e-zinc-50 | border-inline-end-color: rgb(250 250 250); |
| border-e-zinc-100 | border-inline-end-color: rgb(244 244 245); |
| border-e-zinc-200 | border-inline-end-color: rgb(228 228 231); |
| border-e-zinc-300 | border-inline-end-color: rgb(212 212 216); |
| border-e-zinc-400 | border-inline-end-color: rgb(161 161 170); |
| border-e-zinc-500 | border-inline-end-color: rgb(113 113 122); |
| border-e-zinc-600 | border-inline-end-color: rgb(82 82 91); |
| border-e-zinc-700 | border-inline-end-color: rgb(63 63 70); |
| border-e-zinc-800 | border-inline-end-color: rgb(39 39 42); |
| border-e-zinc-900 | border-inline-end-color: rgb(24 24 27); |
| border-e-zinc-950 | border-inline-end-color: rgb(9 9 11); |
| border-e-neutral-50 | border-inline-end-color: rgb(250 250 250); |
| border-e-neutral-100 | border-inline-end-color: rgb(245 245 245); |
| border-e-neutral-200 | border-inline-end-color: rgb(229 229 229); |
| border-e-neutral-300 | border-inline-end-color: rgb(212 212 212); |
| border-e-neutral-400 | border-inline-end-color: rgb(163 163 163); |
| border-e-neutral-500 | border-inline-end-color: rgb(115 115 115); |
| border-e-neutral-600 | border-inline-end-color: rgb(82 82 82); |
| border-e-neutral-700 | border-inline-end-color: rgb(64 64 64); |
| border-e-neutral-800 | border-inline-end-color: rgb(38 38 38); |
| border-e-neutral-900 | border-inline-end-color: rgb(23 23 23); |
| border-e-neutral-950 | border-inline-end-color: rgb(10 10 10); |
| border-e-stone-50 | border-inline-end-color: rgb(250 250 249); |
| border-e-stone-100 | border-inline-end-color: rgb(245 245 244); |
| border-e-stone-200 | border-inline-end-color: rgb(231 229 228); |
| border-e-stone-300 | border-inline-end-color: rgb(214 211 209); |
| border-e-stone-400 | border-inline-end-color: rgb(168 162 158); |
| border-e-stone-500 | border-inline-end-color: rgb(120 113 108); |
| border-e-stone-600 | border-inline-end-color: rgb(87 83 78); |
| border-e-stone-700 | border-inline-end-color: rgb(68 64 60); |
| border-e-stone-800 | border-inline-end-color: rgb(41 37 36); |
| border-e-stone-900 | border-inline-end-color: rgb(28 25 23); |
| border-e-stone-950 | border-inline-end-color: rgb(12 10 9); |
| border-e-red-50 | border-inline-end-color: rgb(254 242 242); |
| border-e-red-100 | border-inline-end-color: rgb(254 226 226); |
| border-e-red-200 | border-inline-end-color: rgb(254 202 202); |
| border-e-red-300 | border-inline-end-color: rgb(252 165 165); |
| border-e-red-400 | border-inline-end-color: rgb(248 113 113); |
| border-e-red-500 | border-inline-end-color: rgb(239 68 68); |
| border-e-red-600 | border-inline-end-color: rgb(220 38 38); |
| border-e-red-700 | border-inline-end-color: rgb(185 28 28); |
| border-e-red-800 | border-inline-end-color: rgb(153 27 27); |
| border-e-red-900 | border-inline-end-color: rgb(127 29 29); |
| border-e-red-950 | border-inline-end-color: rgb(69 10 10); |
| border-e-orange-50 | border-inline-end-color: rgb(255 247 237); |
| border-e-orange-100 | border-inline-end-color: rgb(255 237 213); |
| border-e-orange-200 | border-inline-end-color: rgb(254 215 170); |
| border-e-orange-300 | border-inline-end-color: rgb(253 186 116); |
| border-e-orange-400 | border-inline-end-color: rgb(251 146 60); |
| border-e-orange-500 | border-inline-end-color: rgb(249 115 22); |
| border-e-orange-600 | border-inline-end-color: rgb(234 88 12); |
| border-e-orange-700 | border-inline-end-color: rgb(194 65 12); |
| border-e-orange-800 | border-inline-end-color: rgb(154 52 18); |
| border-e-orange-900 | border-inline-end-color: rgb(124 45 18); |
| border-e-orange-950 | border-inline-end-color: rgb(67 20 7); |
| border-e-amber-50 | border-inline-end-color: rgb(255 251 235); |
| border-e-amber-100 | border-inline-end-color: rgb(254 243 199); |
| border-e-amber-200 | border-inline-end-color: rgb(253 230 138); |
| border-e-amber-300 | border-inline-end-color: rgb(252 211 77); |
| border-e-amber-400 | border-inline-end-color: rgb(251 191 36); |
| border-e-amber-500 | border-inline-end-color: rgb(245 158 11); |
| border-e-amber-600 | border-inline-end-color: rgb(217 119 6); |
| border-e-amber-700 | border-inline-end-color: rgb(180 83 9); |
| border-e-amber-800 | border-inline-end-color: rgb(146 64 14); |
| border-e-amber-900 | border-inline-end-color: rgb(120 53 15); |
| border-e-amber-950 | border-inline-end-color: rgb(69 26 3); |
| border-e-yellow-50 | border-inline-end-color: rgb(254 252 232); |
| border-e-yellow-100 | border-inline-end-color: rgb(254 249 195); |
| border-e-yellow-200 | border-inline-end-color: rgb(254 240 138); |
| border-e-yellow-300 | border-inline-end-color: rgb(253 224 71); |
| border-e-yellow-400 | border-inline-end-color: rgb(250 204 21); |
| border-e-yellow-500 | border-inline-end-color: rgb(234 179 8); |
| border-e-yellow-600 | border-inline-end-color: rgb(202 138 4); |
| border-e-yellow-700 | border-inline-end-color: rgb(161 98 7); |
| border-e-yellow-800 | border-inline-end-color: rgb(133 77 14); |
| border-e-yellow-900 | border-inline-end-color: rgb(113 63 18); |
| border-e-yellow-950 | border-inline-end-color: rgb(66 32 6); |
| border-e-lime-50 | border-inline-end-color: rgb(247 254 231); |
| border-e-lime-100 | border-inline-end-color: rgb(236 252 203); |
| border-e-lime-200 | border-inline-end-color: rgb(217 249 157); |
| border-e-lime-300 | border-inline-end-color: rgb(190 242 100); |
| border-e-lime-400 | border-inline-end-color: rgb(163 230 53); |
| border-e-lime-500 | border-inline-end-color: rgb(132 204 22); |
| border-e-lime-600 | border-inline-end-color: rgb(101 163 13); |
| border-e-lime-700 | border-inline-end-color: rgb(77 124 15); |
| border-e-lime-800 | border-inline-end-color: rgb(63 98 18); |
| border-e-lime-900 | border-inline-end-color: rgb(54 83 20); |
| border-e-lime-950 | border-inline-end-color: rgb(26 46 5); |
| border-e-green-50 | border-inline-end-color: rgb(240 253 244); |
| border-e-green-100 | border-inline-end-color: rgb(220 252 231); |
| border-e-green-200 | border-inline-end-color: rgb(187 247 208); |
| border-e-green-300 | border-inline-end-color: rgb(134 239 172); |
| border-e-green-400 | border-inline-end-color: rgb(74 222 128); |
| border-e-green-500 | border-inline-end-color: rgb(34 197 94); |
| border-e-green-600 | border-inline-end-color: rgb(22 163 74); |
| border-e-green-700 | border-inline-end-color: rgb(21 128 61); |
| border-e-green-800 | border-inline-end-color: rgb(22 101 52); |
| border-e-green-900 | border-inline-end-color: rgb(20 83 45); |
| border-e-green-950 | border-inline-end-color: rgb(5 46 22); |
| border-e-emerald-50 | border-inline-end-color: rgb(236 253 245); |
| border-e-emerald-100 | border-inline-end-color: rgb(209 250 229); |
| border-e-emerald-200 | border-inline-end-color: rgb(167 243 208); |
| border-e-emerald-300 | border-inline-end-color: rgb(110 231 183); |
| border-e-emerald-400 | border-inline-end-color: rgb(52 211 153); |
| border-e-emerald-500 | border-inline-end-color: rgb(16 185 129); |
| border-e-emerald-600 | border-inline-end-color: rgb(5 150 105); |
| border-e-emerald-700 | border-inline-end-color: rgb(4 120 87); |
| border-e-emerald-800 | border-inline-end-color: rgb(6 95 70); |
| border-e-emerald-900 | border-inline-end-color: rgb(6 78 59); |
| border-e-emerald-950 | border-inline-end-color: rgb(2 44 34); |
| border-e-teal-50 | border-inline-end-color: rgb(240 253 250); |
| border-e-teal-100 | border-inline-end-color: rgb(204 251 241); |
| border-e-teal-200 | border-inline-end-color: rgb(153 246 228); |
| border-e-teal-300 | border-inline-end-color: rgb(94 234 212); |
| border-e-teal-400 | border-inline-end-color: rgb(45 212 191); |
| border-e-teal-500 | border-inline-end-color: rgb(20 184 166); |
| border-e-teal-600 | border-inline-end-color: rgb(13 148 136); |
| border-e-teal-700 | border-inline-end-color: rgb(15 118 110); |
| border-e-teal-800 | border-inline-end-color: rgb(17 94 89); |
| border-e-teal-900 | border-inline-end-color: rgb(19 78 74); |
| border-e-teal-950 | border-inline-end-color: rgb(4 47 46); |
| border-e-cyan-50 | border-inline-end-color: rgb(236 254 255); |
| border-e-cyan-100 | border-inline-end-color: rgb(207 250 254); |
| border-e-cyan-200 | border-inline-end-color: rgb(165 243 252); |
| border-e-cyan-300 | border-inline-end-color: rgb(103 232 249); |
| border-e-cyan-400 | border-inline-end-color: rgb(34 211 238); |
| border-e-cyan-500 | border-inline-end-color: rgb(6 182 212); |
| border-e-cyan-600 | border-inline-end-color: rgb(8 145 178); |
| border-e-cyan-700 | border-inline-end-color: rgb(14 116 144); |
| border-e-cyan-800 | border-inline-end-color: rgb(21 94 117); |
| border-e-cyan-900 | border-inline-end-color: rgb(22 78 99); |
| border-e-cyan-950 | border-inline-end-color: rgb(8 51 68); |
| border-e-sky-50 | border-inline-end-color: rgb(240 249 255); |
| border-e-sky-100 | border-inline-end-color: rgb(224 242 254); |
| border-e-sky-200 | border-inline-end-color: rgb(186 230 253); |
| border-e-sky-300 | border-inline-end-color: rgb(125 211 252); |
| border-e-sky-400 | border-inline-end-color: rgb(56 189 248); |
| border-e-sky-500 | border-inline-end-color: rgb(14 165 233); |
| border-e-sky-600 | border-inline-end-color: rgb(2 132 199); |
| border-e-sky-700 | border-inline-end-color: rgb(3 105 161); |
| border-e-sky-800 | border-inline-end-color: rgb(7 89 133); |
| border-e-sky-900 | border-inline-end-color: rgb(12 74 110); |
| border-e-sky-950 | border-inline-end-color: rgb(8 47 73); |
| border-e-blue-50 | border-inline-end-color: rgb(239 246 255); |
| border-e-blue-100 | border-inline-end-color: rgb(219 234 254); |
| border-e-blue-200 | border-inline-end-color: rgb(191 219 254); |
| border-e-blue-300 | border-inline-end-color: rgb(147 197 253); |
| border-e-blue-400 | border-inline-end-color: rgb(96 165 250); |
| border-e-blue-500 | border-inline-end-color: rgb(59 130 246); |
| border-e-blue-600 | border-inline-end-color: rgb(37 99 235); |
| border-e-blue-700 | border-inline-end-color: rgb(29 78 216); |
| border-e-blue-800 | border-inline-end-color: rgb(30 64 175); |
| border-e-blue-900 | border-inline-end-color: rgb(30 58 138); |
| border-e-blue-950 | border-inline-end-color: rgb(23 37 84); |
| border-e-indigo-50 | border-inline-end-color: rgb(238 242 255); |
| border-e-indigo-100 | border-inline-end-color: rgb(224 231 255); |
| border-e-indigo-200 | border-inline-end-color: rgb(199 210 254); |
| border-e-indigo-300 | border-inline-end-color: rgb(165 180 252); |
| border-e-indigo-400 | border-inline-end-color: rgb(129 140 248); |
| border-e-indigo-500 | border-inline-end-color: rgb(99 102 241); |
| border-e-indigo-600 | border-inline-end-color: rgb(79 70 229); |
| border-e-indigo-700 | border-inline-end-color: rgb(67 56 202); |
| border-e-indigo-800 | border-inline-end-color: rgb(55 48 163); |
| border-e-indigo-900 | border-inline-end-color: rgb(49 46 129); |
| border-e-indigo-950 | border-inline-end-color: rgb(30 27 75); |
| border-e-violet-50 | border-inline-end-color: rgb(245 243 255); |
| border-e-violet-100 | border-inline-end-color: rgb(237 233 254); |
| border-e-violet-200 | border-inline-end-color: rgb(221 214 254); |
| border-e-violet-300 | border-inline-end-color: rgb(196 181 253); |
| border-e-violet-400 | border-inline-end-color: rgb(167 139 250); |
| border-e-violet-500 | border-inline-end-color: rgb(139 92 246); |
| border-e-violet-600 | border-inline-end-color: rgb(124 58 237); |
| border-e-violet-700 | border-inline-end-color: rgb(109 40 217); |
| border-e-violet-800 | border-inline-end-color: rgb(91 33 182); |
| border-e-violet-900 | border-inline-end-color: rgb(76 29 149); |
| border-e-violet-950 | border-inline-end-color: rgb(46 16 101); |
| border-e-purple-50 | border-inline-end-color: rgb(250 245 255); |
| border-e-purple-100 | border-inline-end-color: rgb(243 232 255); |
| border-e-purple-200 | border-inline-end-color: rgb(233 213 255); |
| border-e-purple-300 | border-inline-end-color: rgb(216 180 254); |
| border-e-purple-400 | border-inline-end-color: rgb(192 132 252); |
| border-e-purple-500 | border-inline-end-color: rgb(168 85 247); |
| border-e-purple-600 | border-inline-end-color: rgb(147 51 234); |
| border-e-purple-700 | border-inline-end-color: rgb(126 34 206); |
| border-e-purple-800 | border-inline-end-color: rgb(107 33 168); |
| border-e-purple-900 | border-inline-end-color: rgb(88 28 135); |
| border-e-purple-950 | border-inline-end-color: rgb(59 7 100); |
| border-e-fuchsia-50 | border-inline-end-color: rgb(253 244 255); |
| border-e-fuchsia-100 | border-inline-end-color: rgb(250 232 255); |
| border-e-fuchsia-200 | border-inline-end-color: rgb(245 208 254); |
| border-e-fuchsia-300 | border-inline-end-color: rgb(240 171 252); |
| border-e-fuchsia-400 | border-inline-end-color: rgb(232 121 249); |
| border-e-fuchsia-500 | border-inline-end-color: rgb(217 70 239); |
| border-e-fuchsia-600 | border-inline-end-color: rgb(192 38 211); |
| border-e-fuchsia-700 | border-inline-end-color: rgb(162 28 175); |
| border-e-fuchsia-800 | border-inline-end-color: rgb(134 25 143); |
| border-e-fuchsia-900 | border-inline-end-color: rgb(112 26 117); |
| border-e-fuchsia-950 | border-inline-end-color: rgb(74 4 78); |
| border-e-pink-50 | border-inline-end-color: rgb(253 242 248); |
| border-e-pink-100 | border-inline-end-color: rgb(252 231 243); |
| border-e-pink-200 | border-inline-end-color: rgb(251 207 232); |
| border-e-pink-300 | border-inline-end-color: rgb(249 168 212); |
| border-e-pink-400 | border-inline-end-color: rgb(244 114 182); |
| border-e-pink-500 | border-inline-end-color: rgb(236 72 153); |
| border-e-pink-600 | border-inline-end-color: rgb(219 39 119); |
| border-e-pink-700 | border-inline-end-color: rgb(190 24 93); |
| border-e-pink-800 | border-inline-end-color: rgb(157 23 77); |
| border-e-pink-900 | border-inline-end-color: rgb(131 24 67); |
| border-e-pink-950 | border-inline-end-color: rgb(80 7 36); |
| border-e-rose-50 | border-inline-end-color: rgb(255 241 242); |
| border-e-rose-100 | border-inline-end-color: rgb(255 228 230); |
| border-e-rose-200 | border-inline-end-color: rgb(254 205 211); |
| border-e-rose-300 | border-inline-end-color: rgb(253 164 175); |
| border-e-rose-400 | border-inline-end-color: rgb(251 113 133); |
| border-e-rose-500 | border-inline-end-color: rgb(244 63 94); |
| border-e-rose-600 | border-inline-end-color: rgb(225 29 72); |
| border-e-rose-700 | border-inline-end-color: rgb(190 18 60); |
| border-e-rose-800 | border-inline-end-color: rgb(159 18 57); |
| border-e-rose-900 | border-inline-end-color: rgb(136 19 55); |
| border-e-rose-950 | border-inline-end-color: rgb(76 5 25); |
| border-t-inherit | border-top-color: inherit; |
| border-t-current | border-top-color: currentColor; |
| border-t-transparent | border-top-color: transparent; |
| border-t-black | border-top-color: rgb(0 0 0); |
| border-t-white | border-top-color: rgb(255 255 255); |
| border-t-slate-50 | border-top-color: rgb(248 250 252); |
| border-t-slate-100 | border-top-color: rgb(241 245 249); |
| border-t-slate-200 | border-top-color: rgb(226 232 240); |
| border-t-slate-300 | border-top-color: rgb(203 213 225); |
| border-t-slate-400 | border-top-color: rgb(148 163 184); |
| border-t-slate-500 | border-top-color: rgb(100 116 139); |
| border-t-slate-600 | border-top-color: rgb(71 85 105); |
| border-t-slate-700 | border-top-color: rgb(51 65 85); |
| border-t-slate-800 | border-top-color: rgb(30 41 59); |
| border-t-slate-900 | border-top-color: rgb(15 23 42); |
| border-t-slate-950 | border-top-color: rgb(2 6 23); |
| border-t-gray-50 | border-top-color: rgb(249 250 251); |
| border-t-gray-100 | border-top-color: rgb(243 244 246); |
| border-t-gray-200 | border-top-color: rgb(229 231 235); |
| border-t-gray-300 | border-top-color: rgb(209 213 219); |
| border-t-gray-400 | border-top-color: rgb(156 163 175); |
| border-t-gray-500 | border-top-color: rgb(107 114 128); |
| border-t-gray-600 | border-top-color: rgb(75 85 99); |
| border-t-gray-700 | border-top-color: rgb(55 65 81); |
| border-t-gray-800 | border-top-color: rgb(31 41 55); |
| border-t-gray-900 | border-top-color: rgb(17 24 39); |
| border-t-gray-950 | border-top-color: rgb(3 7 18); |
| border-t-zinc-50 | border-top-color: rgb(250 250 250); |
| border-t-zinc-100 | border-top-color: rgb(244 244 245); |
| border-t-zinc-200 | border-top-color: rgb(228 228 231); |
| border-t-zinc-300 | border-top-color: rgb(212 212 216); |
| border-t-zinc-400 | border-top-color: rgb(161 161 170); |
| border-t-zinc-500 | border-top-color: rgb(113 113 122); |
| border-t-zinc-600 | border-top-color: rgb(82 82 91); |
| border-t-zinc-700 | border-top-color: rgb(63 63 70); |
| border-t-zinc-800 | border-top-color: rgb(39 39 42); |
| border-t-zinc-900 | border-top-color: rgb(24 24 27); |
| border-t-zinc-950 | border-top-color: rgb(9 9 11); |
| border-t-neutral-50 | border-top-color: rgb(250 250 250); |
| border-t-neutral-100 | border-top-color: rgb(245 245 245); |
| border-t-neutral-200 | border-top-color: rgb(229 229 229); |
| border-t-neutral-300 | border-top-color: rgb(212 212 212); |
| border-t-neutral-400 | border-top-color: rgb(163 163 163); |
| border-t-neutral-500 | border-top-color: rgb(115 115 115); |
| border-t-neutral-600 | border-top-color: rgb(82 82 82); |
| border-t-neutral-700 | border-top-color: rgb(64 64 64); |
| border-t-neutral-800 | border-top-color: rgb(38 38 38); |
| border-t-neutral-900 | border-top-color: rgb(23 23 23); |
| border-t-neutral-950 | border-top-color: rgb(10 10 10); |
| border-t-stone-50 | border-top-color: rgb(250 250 249); |
| border-t-stone-100 | border-top-color: rgb(245 245 244); |
| border-t-stone-200 | border-top-color: rgb(231 229 228); |
| border-t-stone-300 | border-top-color: rgb(214 211 209); |
| border-t-stone-400 | border-top-color: rgb(168 162 158); |
| border-t-stone-500 | border-top-color: rgb(120 113 108); |
| border-t-stone-600 | border-top-color: rgb(87 83 78); |
| border-t-stone-700 | border-top-color: rgb(68 64 60); |
| border-t-stone-800 | border-top-color: rgb(41 37 36); |
| border-t-stone-900 | border-top-color: rgb(28 25 23); |
| border-t-stone-950 | border-top-color: rgb(12 10 9); |
| border-t-red-50 | border-top-color: rgb(254 242 242); |
| border-t-red-100 | border-top-color: rgb(254 226 226); |
| border-t-red-200 | border-top-color: rgb(254 202 202); |
| border-t-red-300 | border-top-color: rgb(252 165 165); |
| border-t-red-400 | border-top-color: rgb(248 113 113); |
| border-t-red-500 | border-top-color: rgb(239 68 68); |
| border-t-red-600 | border-top-color: rgb(220 38 38); |
| border-t-red-700 | border-top-color: rgb(185 28 28); |
| border-t-red-800 | border-top-color: rgb(153 27 27); |
| border-t-red-900 | border-top-color: rgb(127 29 29); |
| border-t-red-950 | border-top-color: rgb(69 10 10); |
| border-t-orange-50 | border-top-color: rgb(255 247 237); |
| border-t-orange-100 | border-top-color: rgb(255 237 213); |
| border-t-orange-200 | border-top-color: rgb(254 215 170); |
| border-t-orange-300 | border-top-color: rgb(253 186 116); |
| border-t-orange-400 | border-top-color: rgb(251 146 60); |
| border-t-orange-500 | border-top-color: rgb(249 115 22); |
| border-t-orange-600 | border-top-color: rgb(234 88 12); |
| border-t-orange-700 | border-top-color: rgb(194 65 12); |
| border-t-orange-800 | border-top-color: rgb(154 52 18); |
| border-t-orange-900 | border-top-color: rgb(124 45 18); |
| border-t-orange-950 | border-top-color: rgb(67 20 7); |
| border-t-amber-50 | border-top-color: rgb(255 251 235); |
| border-t-amber-100 | border-top-color: rgb(254 243 199); |
| border-t-amber-200 | border-top-color: rgb(253 230 138); |
| border-t-amber-300 | border-top-color: rgb(252 211 77); |
| border-t-amber-400 | border-top-color: rgb(251 191 36); |
| border-t-amber-500 | border-top-color: rgb(245 158 11); |
| border-t-amber-600 | border-top-color: rgb(217 119 6); |
| border-t-amber-700 | border-top-color: rgb(180 83 9); |
| border-t-amber-800 | border-top-color: rgb(146 64 14); |
| border-t-amber-900 | border-top-color: rgb(120 53 15); |
| border-t-amber-950 | border-top-color: rgb(69 26 3); |
| border-t-yellow-50 | border-top-color: rgb(254 252 232); |
| border-t-yellow-100 | border-top-color: rgb(254 249 195); |
| border-t-yellow-200 | border-top-color: rgb(254 240 138); |
| border-t-yellow-300 | border-top-color: rgb(253 224 71); |
| border-t-yellow-400 | border-top-color: rgb(250 204 21); |
| border-t-yellow-500 | border-top-color: rgb(234 179 8); |
| border-t-yellow-600 | border-top-color: rgb(202 138 4); |
| border-t-yellow-700 | border-top-color: rgb(161 98 7); |
| border-t-yellow-800 | border-top-color: rgb(133 77 14); |
| border-t-yellow-900 | border-top-color: rgb(113 63 18); |
| border-t-yellow-950 | border-top-color: rgb(66 32 6); |
| border-t-lime-50 | border-top-color: rgb(247 254 231); |
| border-t-lime-100 | border-top-color: rgb(236 252 203); |
| border-t-lime-200 | border-top-color: rgb(217 249 157); |
| border-t-lime-300 | border-top-color: rgb(190 242 100); |
| border-t-lime-400 | border-top-color: rgb(163 230 53); |
| border-t-lime-500 | border-top-color: rgb(132 204 22); |
| border-t-lime-600 | border-top-color: rgb(101 163 13); |
| border-t-lime-700 | border-top-color: rgb(77 124 15); |
| border-t-lime-800 | border-top-color: rgb(63 98 18); |
| border-t-lime-900 | border-top-color: rgb(54 83 20); |
| border-t-lime-950 | border-top-color: rgb(26 46 5); |
| border-t-green-50 | border-top-color: rgb(240 253 244); |
| border-t-green-100 | border-top-color: rgb(220 252 231); |
| border-t-green-200 | border-top-color: rgb(187 247 208); |
| border-t-green-300 | border-top-color: rgb(134 239 172); |
| border-t-green-400 | border-top-color: rgb(74 222 128); |
| border-t-green-500 | border-top-color: rgb(34 197 94); |
| border-t-green-600 | border-top-color: rgb(22 163 74); |
| border-t-green-700 | border-top-color: rgb(21 128 61); |
| border-t-green-800 | border-top-color: rgb(22 101 52); |
| border-t-green-900 | border-top-color: rgb(20 83 45); |
| border-t-green-950 | border-top-color: rgb(5 46 22); |
| border-t-emerald-50 | border-top-color: rgb(236 253 245); |
| border-t-emerald-100 | border-top-color: rgb(209 250 229); |
| border-t-emerald-200 | border-top-color: rgb(167 243 208); |
| border-t-emerald-300 | border-top-color: rgb(110 231 183); |
| border-t-emerald-400 | border-top-color: rgb(52 211 153); |
| border-t-emerald-500 | border-top-color: rgb(16 185 129); |
| border-t-emerald-600 | border-top-color: rgb(5 150 105); |
| border-t-emerald-700 | border-top-color: rgb(4 120 87); |
| border-t-emerald-800 | border-top-color: rgb(6 95 70); |
| border-t-emerald-900 | border-top-color: rgb(6 78 59); |
| border-t-emerald-950 | border-top-color: rgb(2 44 34); |
| border-t-teal-50 | border-top-color: rgb(240 253 250); |
| border-t-teal-100 | border-top-color: rgb(204 251 241); |
| border-t-teal-200 | border-top-color: rgb(153 246 228); |
| border-t-teal-300 | border-top-color: rgb(94 234 212); |
| border-t-teal-400 | border-top-color: rgb(45 212 191); |
| border-t-teal-500 | border-top-color: rgb(20 184 166); |
| border-t-teal-600 | border-top-color: rgb(13 148 136); |
| border-t-teal-700 | border-top-color: rgb(15 118 110); |
| border-t-teal-800 | border-top-color: rgb(17 94 89); |
| border-t-teal-900 | border-top-color: rgb(19 78 74); |
| border-t-teal-950 | border-top-color: rgb(4 47 46); |
| border-t-cyan-50 | border-top-color: rgb(236 254 255); |
| border-t-cyan-100 | border-top-color: rgb(207 250 254); |
| border-t-cyan-200 | border-top-color: rgb(165 243 252); |
| border-t-cyan-300 | border-top-color: rgb(103 232 249); |
| border-t-cyan-400 | border-top-color: rgb(34 211 238); |
| border-t-cyan-500 | border-top-color: rgb(6 182 212); |
| border-t-cyan-600 | border-top-color: rgb(8 145 178); |
| border-t-cyan-700 | border-top-color: rgb(14 116 144); |
| border-t-cyan-800 | border-top-color: rgb(21 94 117); |
| border-t-cyan-900 | border-top-color: rgb(22 78 99); |
| border-t-cyan-950 | border-top-color: rgb(8 51 68); |
| border-t-sky-50 | border-top-color: rgb(240 249 255); |
| border-t-sky-100 | border-top-color: rgb(224 242 254); |
| border-t-sky-200 | border-top-color: rgb(186 230 253); |
| border-t-sky-300 | border-top-color: rgb(125 211 252); |
| border-t-sky-400 | border-top-color: rgb(56 189 248); |
| border-t-sky-500 | border-top-color: rgb(14 165 233); |
| border-t-sky-600 | border-top-color: rgb(2 132 199); |
| border-t-sky-700 | border-top-color: rgb(3 105 161); |
| border-t-sky-800 | border-top-color: rgb(7 89 133); |
| border-t-sky-900 | border-top-color: rgb(12 74 110); |
| border-t-sky-950 | border-top-color: rgb(8 47 73); |
| border-t-blue-50 | border-top-color: rgb(239 246 255); |
| border-t-blue-100 | border-top-color: rgb(219 234 254); |
| border-t-blue-200 | border-top-color: rgb(191 219 254); |
| border-t-blue-300 | border-top-color: rgb(147 197 253); |
| border-t-blue-400 | border-top-color: rgb(96 165 250); |
| border-t-blue-500 | border-top-color: rgb(59 130 246); |
| border-t-blue-600 | border-top-color: rgb(37 99 235); |
| border-t-blue-700 | border-top-color: rgb(29 78 216); |
| border-t-blue-800 | border-top-color: rgb(30 64 175); |
| border-t-blue-900 | border-top-color: rgb(30 58 138); |
| border-t-blue-950 | border-top-color: rgb(23 37 84); |
| border-t-indigo-50 | border-top-color: rgb(238 242 255); |
| border-t-indigo-100 | border-top-color: rgb(224 231 255); |
| border-t-indigo-200 | border-top-color: rgb(199 210 254); |
| border-t-indigo-300 | border-top-color: rgb(165 180 252); |
| border-t-indigo-400 | border-top-color: rgb(129 140 248); |
| border-t-indigo-500 | border-top-color: rgb(99 102 241); |
| border-t-indigo-600 | border-top-color: rgb(79 70 229); |
| border-t-indigo-700 | border-top-color: rgb(67 56 202); |
| border-t-indigo-800 | border-top-color: rgb(55 48 163); |
| border-t-indigo-900 | border-top-color: rgb(49 46 129); |
| border-t-indigo-950 | border-top-color: rgb(30 27 75); |
| border-t-violet-50 | border-top-color: rgb(245 243 255); |
| border-t-violet-100 | border-top-color: rgb(237 233 254); |
| border-t-violet-200 | border-top-color: rgb(221 214 254); |
| border-t-violet-300 | border-top-color: rgb(196 181 253); |
| border-t-violet-400 | border-top-color: rgb(167 139 250); |
| border-t-violet-500 | border-top-color: rgb(139 92 246); |
| border-t-violet-600 | border-top-color: rgb(124 58 237); |
| border-t-violet-700 | border-top-color: rgb(109 40 217); |
| border-t-violet-800 | border-top-color: rgb(91 33 182); |
| border-t-violet-900 | border-top-color: rgb(76 29 149); |
| border-t-violet-950 | border-top-color: rgb(46 16 101); |
| border-t-purple-50 | border-top-color: rgb(250 245 255); |
| border-t-purple-100 | border-top-color: rgb(243 232 255); |
| border-t-purple-200 | border-top-color: rgb(233 213 255); |
| border-t-purple-300 | border-top-color: rgb(216 180 254); |
| border-t-purple-400 | border-top-color: rgb(192 132 252); |
| border-t-purple-500 | border-top-color: rgb(168 85 247); |
| border-t-purple-600 | border-top-color: rgb(147 51 234); |
| border-t-purple-700 | border-top-color: rgb(126 34 206); |
| border-t-purple-800 | border-top-color: rgb(107 33 168); |
| border-t-purple-900 | border-top-color: rgb(88 28 135); |
| border-t-purple-950 | border-top-color: rgb(59 7 100); |
| border-t-fuchsia-50 | border-top-color: rgb(253 244 255); |
| border-t-fuchsia-100 | border-top-color: rgb(250 232 255); |
| border-t-fuchsia-200 | border-top-color: rgb(245 208 254); |
| border-t-fuchsia-300 | border-top-color: rgb(240 171 252); |
| border-t-fuchsia-400 | border-top-color: rgb(232 121 249); |
| border-t-fuchsia-500 | border-top-color: rgb(217 70 239); |
| border-t-fuchsia-600 | border-top-color: rgb(192 38 211); |
| border-t-fuchsia-700 | border-top-color: rgb(162 28 175); |
| border-t-fuchsia-800 | border-top-color: rgb(134 25 143); |
| border-t-fuchsia-900 | border-top-color: rgb(112 26 117); |
| border-t-fuchsia-950 | border-top-color: rgb(74 4 78); |
| border-t-pink-50 | border-top-color: rgb(253 242 248); |
| border-t-pink-100 | border-top-color: rgb(252 231 243); |
| border-t-pink-200 | border-top-color: rgb(251 207 232); |
| border-t-pink-300 | border-top-color: rgb(249 168 212); |
| border-t-pink-400 | border-top-color: rgb(244 114 182); |
| border-t-pink-500 | border-top-color: rgb(236 72 153); |
| border-t-pink-600 | border-top-color: rgb(219 39 119); |
| border-t-pink-700 | border-top-color: rgb(190 24 93); |
| border-t-pink-800 | border-top-color: rgb(157 23 77); |
| border-t-pink-900 | border-top-color: rgb(131 24 67); |
| border-t-pink-950 | border-top-color: rgb(80 7 36); |
| border-t-rose-50 | border-top-color: rgb(255 241 242); |
| border-t-rose-100 | border-top-color: rgb(255 228 230); |
| border-t-rose-200 | border-top-color: rgb(254 205 211); |
| border-t-rose-300 | border-top-color: rgb(253 164 175); |
| border-t-rose-400 | border-top-color: rgb(251 113 133); |
| border-t-rose-500 | border-top-color: rgb(244 63 94); |
| border-t-rose-600 | border-top-color: rgb(225 29 72); |
| border-t-rose-700 | border-top-color: rgb(190 18 60); |
| border-t-rose-800 | border-top-color: rgb(159 18 57); |
| border-t-rose-900 | border-top-color: rgb(136 19 55); |
| border-t-rose-950 | border-top-color: rgb(76 5 25); |
| border-r-inherit | border-right-color: inherit; |
| border-r-current | border-right-color: currentColor; |
| border-r-transparent | border-right-color: transparent; |
| border-r-black | border-right-color: rgb(0 0 0); |
| border-r-white | border-right-color: rgb(255 255 255); |
| border-r-slate-50 | border-right-color: rgb(248 250 252); |
| border-r-slate-100 | border-right-color: rgb(241 245 249); |
| border-r-slate-200 | border-right-color: rgb(226 232 240); |
| border-r-slate-300 | border-right-color: rgb(203 213 225); |
| border-r-slate-400 | border-right-color: rgb(148 163 184); |
| border-r-slate-500 | border-right-color: rgb(100 116 139); |
| border-r-slate-600 | border-right-color: rgb(71 85 105); |
| border-r-slate-700 | border-right-color: rgb(51 65 85); |
| border-r-slate-800 | border-right-color: rgb(30 41 59); |
| border-r-slate-900 | border-right-color: rgb(15 23 42); |
| border-r-slate-950 | border-right-color: rgb(2 6 23); |
| border-r-gray-50 | border-right-color: rgb(249 250 251); |
| border-r-gray-100 | border-right-color: rgb(243 244 246); |
| border-r-gray-200 | border-right-color: rgb(229 231 235); |
| border-r-gray-300 | border-right-color: rgb(209 213 219); |
| border-r-gray-400 | border-right-color: rgb(156 163 175); |
| border-r-gray-500 | border-right-color: rgb(107 114 128); |
| border-r-gray-600 | border-right-color: rgb(75 85 99); |
| border-r-gray-700 | border-right-color: rgb(55 65 81); |
| border-r-gray-800 | border-right-color: rgb(31 41 55); |
| border-r-gray-900 | border-right-color: rgb(17 24 39); |
| border-r-gray-950 | border-right-color: rgb(3 7 18); |
| border-r-zinc-50 | border-right-color: rgb(250 250 250); |
| border-r-zinc-100 | border-right-color: rgb(244 244 245); |
| border-r-zinc-200 | border-right-color: rgb(228 228 231); |
| border-r-zinc-300 | border-right-color: rgb(212 212 216); |
| border-r-zinc-400 | border-right-color: rgb(161 161 170); |
| border-r-zinc-500 | border-right-color: rgb(113 113 122); |
| border-r-zinc-600 | border-right-color: rgb(82 82 91); |
| border-r-zinc-700 | border-right-color: rgb(63 63 70); |
| border-r-zinc-800 | border-right-color: rgb(39 39 42); |
| border-r-zinc-900 | border-right-color: rgb(24 24 27); |
| border-r-zinc-950 | border-right-color: rgb(9 9 11); |
| border-r-neutral-50 | border-right-color: rgb(250 250 250); |
| border-r-neutral-100 | border-right-color: rgb(245 245 245); |
| border-r-neutral-200 | border-right-color: rgb(229 229 229); |
| border-r-neutral-300 | border-right-color: rgb(212 212 212); |
| border-r-neutral-400 | border-right-color: rgb(163 163 163); |
| border-r-neutral-500 | border-right-color: rgb(115 115 115); |
| border-r-neutral-600 | border-right-color: rgb(82 82 82); |
| border-r-neutral-700 | border-right-color: rgb(64 64 64); |
| border-r-neutral-800 | border-right-color: rgb(38 38 38); |
| border-r-neutral-900 | border-right-color: rgb(23 23 23); |
| border-r-neutral-950 | border-right-color: rgb(10 10 10); |
| border-r-stone-50 | border-right-color: rgb(250 250 249); |
| border-r-stone-100 | border-right-color: rgb(245 245 244); |
| border-r-stone-200 | border-right-color: rgb(231 229 228); |
| border-r-stone-300 | border-right-color: rgb(214 211 209); |
| border-r-stone-400 | border-right-color: rgb(168 162 158); |
| border-r-stone-500 | border-right-color: rgb(120 113 108); |
| border-r-stone-600 | border-right-color: rgb(87 83 78); |
| border-r-stone-700 | border-right-color: rgb(68 64 60); |
| border-r-stone-800 | border-right-color: rgb(41 37 36); |
| border-r-stone-900 | border-right-color: rgb(28 25 23); |
| border-r-stone-950 | border-right-color: rgb(12 10 9); |
| border-r-red-50 | border-right-color: rgb(254 242 242); |
| border-r-red-100 | border-right-color: rgb(254 226 226); |
| border-r-red-200 | border-right-color: rgb(254 202 202); |
| border-r-red-300 | border-right-color: rgb(252 165 165); |
| border-r-red-400 | border-right-color: rgb(248 113 113); |
| border-r-red-500 | border-right-color: rgb(239 68 68); |
| border-r-red-600 | border-right-color: rgb(220 38 38); |
| border-r-red-700 | border-right-color: rgb(185 28 28); |
| border-r-red-800 | border-right-color: rgb(153 27 27); |
| border-r-red-900 | border-right-color: rgb(127 29 29); |
| border-r-red-950 | border-right-color: rgb(69 10 10); |
| border-r-orange-50 | border-right-color: rgb(255 247 237); |
| border-r-orange-100 | border-right-color: rgb(255 237 213); |
| border-r-orange-200 | border-right-color: rgb(254 215 170); |
| border-r-orange-300 | border-right-color: rgb(253 186 116); |
| border-r-orange-400 | border-right-color: rgb(251 146 60); |
| border-r-orange-500 | border-right-color: rgb(249 115 22); |
| border-r-orange-600 | border-right-color: rgb(234 88 12); |
| border-r-orange-700 | border-right-color: rgb(194 65 12); |
| border-r-orange-800 | border-right-color: rgb(154 52 18); |
| border-r-orange-900 | border-right-color: rgb(124 45 18); |
| border-r-orange-950 | border-right-color: rgb(67 20 7); |
| border-r-amber-50 | border-right-color: rgb(255 251 235); |
| border-r-amber-100 | border-right-color: rgb(254 243 199); |
| border-r-amber-200 | border-right-color: rgb(253 230 138); |
| border-r-amber-300 | border-right-color: rgb(252 211 77); |
| border-r-amber-400 | border-right-color: rgb(251 191 36); |
| border-r-amber-500 | border-right-color: rgb(245 158 11); |
| border-r-amber-600 | border-right-color: rgb(217 119 6); |
| border-r-amber-700 | border-right-color: rgb(180 83 9); |
| border-r-amber-800 | border-right-color: rgb(146 64 14); |
| border-r-amber-900 | border-right-color: rgb(120 53 15); |
| border-r-amber-950 | border-right-color: rgb(69 26 3); |
| border-r-yellow-50 | border-right-color: rgb(254 252 232); |
| border-r-yellow-100 | border-right-color: rgb(254 249 195); |
| border-r-yellow-200 | border-right-color: rgb(254 240 138); |
| border-r-yellow-300 | border-right-color: rgb(253 224 71); |
| border-r-yellow-400 | border-right-color: rgb(250 204 21); |
| border-r-yellow-500 | border-right-color: rgb(234 179 8); |
| border-r-yellow-600 | border-right-color: rgb(202 138 4); |
| border-r-yellow-700 | border-right-color: rgb(161 98 7); |
| border-r-yellow-800 | border-right-color: rgb(133 77 14); |
| border-r-yellow-900 | border-right-color: rgb(113 63 18); |
| border-r-yellow-950 | border-right-color: rgb(66 32 6); |
| border-r-lime-50 | border-right-color: rgb(247 254 231); |
| border-r-lime-100 | border-right-color: rgb(236 252 203); |
| border-r-lime-200 | border-right-color: rgb(217 249 157); |
| border-r-lime-300 | border-right-color: rgb(190 242 100); |
| border-r-lime-400 | border-right-color: rgb(163 230 53); |
| border-r-lime-500 | border-right-color: rgb(132 204 22); |
| border-r-lime-600 | border-right-color: rgb(101 163 13); |
| border-r-lime-700 | border-right-color: rgb(77 124 15); |
| border-r-lime-800 | border-right-color: rgb(63 98 18); |
| border-r-lime-900 | border-right-color: rgb(54 83 20); |
| border-r-lime-950 | border-right-color: rgb(26 46 5); |
| border-r-green-50 | border-right-color: rgb(240 253 244); |
| border-r-green-100 | border-right-color: rgb(220 252 231); |
| border-r-green-200 | border-right-color: rgb(187 247 208); |
| border-r-green-300 | border-right-color: rgb(134 239 172); |
| border-r-green-400 | border-right-color: rgb(74 222 128); |
| border-r-green-500 | border-right-color: rgb(34 197 94); |
| border-r-green-600 | border-right-color: rgb(22 163 74); |
| border-r-green-700 | border-right-color: rgb(21 128 61); |
| border-r-green-800 | border-right-color: rgb(22 101 52); |
| border-r-green-900 | border-right-color: rgb(20 83 45); |
| border-r-green-950 | border-right-color: rgb(5 46 22); |
| border-r-emerald-50 | border-right-color: rgb(236 253 245); |
| border-r-emerald-100 | border-right-color: rgb(209 250 229); |
| border-r-emerald-200 | border-right-color: rgb(167 243 208); |
| border-r-emerald-300 | border-right-color: rgb(110 231 183); |
| border-r-emerald-400 | border-right-color: rgb(52 211 153); |
| border-r-emerald-500 | border-right-color: rgb(16 185 129); |
| border-r-emerald-600 | border-right-color: rgb(5 150 105); |
| border-r-emerald-700 | border-right-color: rgb(4 120 87); |
| border-r-emerald-800 | border-right-color: rgb(6 95 70); |
| border-r-emerald-900 | border-right-color: rgb(6 78 59); |
| border-r-emerald-950 | border-right-color: rgb(2 44 34); |
| border-r-teal-50 | border-right-color: rgb(240 253 250); |
| border-r-teal-100 | border-right-color: rgb(204 251 241); |
| border-r-teal-200 | border-right-color: rgb(153 246 228); |
| border-r-teal-300 | border-right-color: rgb(94 234 212); |
| border-r-teal-400 | border-right-color: rgb(45 212 191); |
| border-r-teal-500 | border-right-color: rgb(20 184 166); |
| border-r-teal-600 | border-right-color: rgb(13 148 136); |
| border-r-teal-700 | border-right-color: rgb(15 118 110); |
| border-r-teal-800 | border-right-color: rgb(17 94 89); |
| border-r-teal-900 | border-right-color: rgb(19 78 74); |
| border-r-teal-950 | border-right-color: rgb(4 47 46); |
| border-r-cyan-50 | border-right-color: rgb(236 254 255); |
| border-r-cyan-100 | border-right-color: rgb(207 250 254); |
| border-r-cyan-200 | border-right-color: rgb(165 243 252); |
| border-r-cyan-300 | border-right-color: rgb(103 232 249); |
| border-r-cyan-400 | border-right-color: rgb(34 211 238); |
| border-r-cyan-500 | border-right-color: rgb(6 182 212); |
| border-r-cyan-600 | border-right-color: rgb(8 145 178); |
| border-r-cyan-700 | border-right-color: rgb(14 116 144); |
| border-r-cyan-800 | border-right-color: rgb(21 94 117); |
| border-r-cyan-900 | border-right-color: rgb(22 78 99); |
| border-r-cyan-950 | border-right-color: rgb(8 51 68); |
| border-r-sky-50 | border-right-color: rgb(240 249 255); |
| border-r-sky-100 | border-right-color: rgb(224 242 254); |
| border-r-sky-200 | border-right-color: rgb(186 230 253); |
| border-r-sky-300 | border-right-color: rgb(125 211 252); |
| border-r-sky-400 | border-right-color: rgb(56 189 248); |
| border-r-sky-500 | border-right-color: rgb(14 165 233); |
| border-r-sky-600 | border-right-color: rgb(2 132 199); |
| border-r-sky-700 | border-right-color: rgb(3 105 161); |
| border-r-sky-800 | border-right-color: rgb(7 89 133); |
| border-r-sky-900 | border-right-color: rgb(12 74 110); |
| border-r-sky-950 | border-right-color: rgb(8 47 73); |
| border-r-blue-50 | border-right-color: rgb(239 246 255); |
| border-r-blue-100 | border-right-color: rgb(219 234 254); |
| border-r-blue-200 | border-right-color: rgb(191 219 254); |
| border-r-blue-300 | border-right-color: rgb(147 197 253); |
| border-r-blue-400 | border-right-color: rgb(96 165 250); |
| border-r-blue-500 | border-right-color: rgb(59 130 246); |
| border-r-blue-600 | border-right-color: rgb(37 99 235); |
| border-r-blue-700 | border-right-color: rgb(29 78 216); |
| border-r-blue-800 | border-right-color: rgb(30 64 175); |
| border-r-blue-900 | border-right-color: rgb(30 58 138); |
| border-r-blue-950 | border-right-color: rgb(23 37 84); |
| border-r-indigo-50 | border-right-color: rgb(238 242 255); |
| border-r-indigo-100 | border-right-color: rgb(224 231 255); |
| border-r-indigo-200 | border-right-color: rgb(199 210 254); |
| border-r-indigo-300 | border-right-color: rgb(165 180 252); |
| border-r-indigo-400 | border-right-color: rgb(129 140 248); |
| border-r-indigo-500 | border-right-color: rgb(99 102 241); |
| border-r-indigo-600 | border-right-color: rgb(79 70 229); |
| border-r-indigo-700 | border-right-color: rgb(67 56 202); |
| border-r-indigo-800 | border-right-color: rgb(55 48 163); |
| border-r-indigo-900 | border-right-color: rgb(49 46 129); |
| border-r-indigo-950 | border-right-color: rgb(30 27 75); |
| border-r-violet-50 | border-right-color: rgb(245 243 255); |
| border-r-violet-100 | border-right-color: rgb(237 233 254); |
| border-r-violet-200 | border-right-color: rgb(221 214 254); |
| border-r-violet-300 | border-right-color: rgb(196 181 253); |
| border-r-violet-400 | border-right-color: rgb(167 139 250); |
| border-r-violet-500 | border-right-color: rgb(139 92 246); |
| border-r-violet-600 | border-right-color: rgb(124 58 237); |
| border-r-violet-700 | border-right-color: rgb(109 40 217); |
| border-r-violet-800 | border-right-color: rgb(91 33 182); |
| border-r-violet-900 | border-right-color: rgb(76 29 149); |
| border-r-violet-950 | border-right-color: rgb(46 16 101); |
| border-r-purple-50 | border-right-color: rgb(250 245 255); |
| border-r-purple-100 | border-right-color: rgb(243 232 255); |
| border-r-purple-200 | border-right-color: rgb(233 213 255); |
| border-r-purple-300 | border-right-color: rgb(216 180 254); |
| border-r-purple-400 | border-right-color: rgb(192 132 252); |
| border-r-purple-500 | border-right-color: rgb(168 85 247); |
| border-r-purple-600 | border-right-color: rgb(147 51 234); |
| border-r-purple-700 | border-right-color: rgb(126 34 206); |
| border-r-purple-800 | border-right-color: rgb(107 33 168); |
| border-r-purple-900 | border-right-color: rgb(88 28 135); |
| border-r-purple-950 | border-right-color: rgb(59 7 100); |
| border-r-fuchsia-50 | border-right-color: rgb(253 244 255); |
| border-r-fuchsia-100 | border-right-color: rgb(250 232 255); |
| border-r-fuchsia-200 | border-right-color: rgb(245 208 254); |
| border-r-fuchsia-300 | border-right-color: rgb(240 171 252); |
| border-r-fuchsia-400 | border-right-color: rgb(232 121 249); |
| border-r-fuchsia-500 | border-right-color: rgb(217 70 239); |
| border-r-fuchsia-600 | border-right-color: rgb(192 38 211); |
| border-r-fuchsia-700 | border-right-color: rgb(162 28 175); |
| border-r-fuchsia-800 | border-right-color: rgb(134 25 143); |
| border-r-fuchsia-900 | border-right-color: rgb(112 26 117); |
| border-r-fuchsia-950 | border-right-color: rgb(74 4 78); |
| border-r-pink-50 | border-right-color: rgb(253 242 248); |
| border-r-pink-100 | border-right-color: rgb(252 231 243); |
| border-r-pink-200 | border-right-color: rgb(251 207 232); |
| border-r-pink-300 | border-right-color: rgb(249 168 212); |
| border-r-pink-400 | border-right-color: rgb(244 114 182); |
| border-r-pink-500 | border-right-color: rgb(236 72 153); |
| border-r-pink-600 | border-right-color: rgb(219 39 119); |
| border-r-pink-700 | border-right-color: rgb(190 24 93); |
| border-r-pink-800 | border-right-color: rgb(157 23 77); |
| border-r-pink-900 | border-right-color: rgb(131 24 67); |
| border-r-pink-950 | border-right-color: rgb(80 7 36); |
| border-r-rose-50 | border-right-color: rgb(255 241 242); |
| border-r-rose-100 | border-right-color: rgb(255 228 230); |
| border-r-rose-200 | border-right-color: rgb(254 205 211); |
| border-r-rose-300 | border-right-color: rgb(253 164 175); |
| border-r-rose-400 | border-right-color: rgb(251 113 133); |
| border-r-rose-500 | border-right-color: rgb(244 63 94); |
| border-r-rose-600 | border-right-color: rgb(225 29 72); |
| border-r-rose-700 | border-right-color: rgb(190 18 60); |
| border-r-rose-800 | border-right-color: rgb(159 18 57); |
| border-r-rose-900 | border-right-color: rgb(136 19 55); |
| border-r-rose-950 | border-right-color: rgb(76 5 25); |
| border-b-inherit | border-bottom-color: inherit; |
| border-b-current | border-bottom-color: currentColor; |
| border-b-transparent | border-bottom-color: transparent; |
| border-b-black | border-bottom-color: rgb(0 0 0); |
| border-b-white | border-bottom-color: rgb(255 255 255); |
| border-b-slate-50 | border-bottom-color: rgb(248 250 252); |
| border-b-slate-100 | border-bottom-color: rgb(241 245 249); |
| border-b-slate-200 | border-bottom-color: rgb(226 232 240); |
| border-b-slate-300 | border-bottom-color: rgb(203 213 225); |
| border-b-slate-400 | border-bottom-color: rgb(148 163 184); |
| border-b-slate-500 | border-bottom-color: rgb(100 116 139); |
| border-b-slate-600 | border-bottom-color: rgb(71 85 105); |
| border-b-slate-700 | border-bottom-color: rgb(51 65 85); |
| border-b-slate-800 | border-bottom-color: rgb(30 41 59); |
| border-b-slate-900 | border-bottom-color: rgb(15 23 42); |
| border-b-slate-950 | border-bottom-color: rgb(2 6 23); |
| border-b-gray-50 | border-bottom-color: rgb(249 250 251); |
| border-b-gray-100 | border-bottom-color: rgb(243 244 246); |
| border-b-gray-200 | border-bottom-color: rgb(229 231 235); |
| border-b-gray-300 | border-bottom-color: rgb(209 213 219); |
| border-b-gray-400 | border-bottom-color: rgb(156 163 175); |
| border-b-gray-500 | border-bottom-color: rgb(107 114 128); |
| border-b-gray-600 | border-bottom-color: rgb(75 85 99); |
| border-b-gray-700 | border-bottom-color: rgb(55 65 81); |
| border-b-gray-800 | border-bottom-color: rgb(31 41 55); |
| border-b-gray-900 | border-bottom-color: rgb(17 24 39); |
| border-b-gray-950 | border-bottom-color: rgb(3 7 18); |
| border-b-zinc-50 | border-bottom-color: rgb(250 250 250); |
| border-b-zinc-100 | border-bottom-color: rgb(244 244 245); |
| border-b-zinc-200 | border-bottom-color: rgb(228 228 231); |
| border-b-zinc-300 | border-bottom-color: rgb(212 212 216); |
| border-b-zinc-400 | border-bottom-color: rgb(161 161 170); |
| border-b-zinc-500 | border-bottom-color: rgb(113 113 122); |
| border-b-zinc-600 | border-bottom-color: rgb(82 82 91); |
| border-b-zinc-700 | border-bottom-color: rgb(63 63 70); |
| border-b-zinc-800 | border-bottom-color: rgb(39 39 42); |
| border-b-zinc-900 | border-bottom-color: rgb(24 24 27); |
| border-b-zinc-950 | border-bottom-color: rgb(9 9 11); |
| border-b-neutral-50 | border-bottom-color: rgb(250 250 250); |
| border-b-neutral-100 | border-bottom-color: rgb(245 245 245); |
| border-b-neutral-200 | border-bottom-color: rgb(229 229 229); |
| border-b-neutral-300 | border-bottom-color: rgb(212 212 212); |
| border-b-neutral-400 | border-bottom-color: rgb(163 163 163); |
| border-b-neutral-500 | border-bottom-color: rgb(115 115 115); |
| border-b-neutral-600 | border-bottom-color: rgb(82 82 82); |
| border-b-neutral-700 | border-bottom-color: rgb(64 64 64); |
| border-b-neutral-800 | border-bottom-color: rgb(38 38 38); |
| border-b-neutral-900 | border-bottom-color: rgb(23 23 23); |
| border-b-neutral-950 | border-bottom-color: rgb(10 10 10); |
| border-b-stone-50 | border-bottom-color: rgb(250 250 249); |
| border-b-stone-100 | border-bottom-color: rgb(245 245 244); |
| border-b-stone-200 | border-bottom-color: rgb(231 229 228); |
| border-b-stone-300 | border-bottom-color: rgb(214 211 209); |
| border-b-stone-400 | border-bottom-color: rgb(168 162 158); |
| border-b-stone-500 | border-bottom-color: rgb(120 113 108); |
| border-b-stone-600 | border-bottom-color: rgb(87 83 78); |
| border-b-stone-700 | border-bottom-color: rgb(68 64 60); |
| border-b-stone-800 | border-bottom-color: rgb(41 37 36); |
| border-b-stone-900 | border-bottom-color: rgb(28 25 23); |
| border-b-stone-950 | border-bottom-color: rgb(12 10 9); |
| border-b-red-50 | border-bottom-color: rgb(254 242 242); |
| border-b-red-100 | border-bottom-color: rgb(254 226 226); |
| border-b-red-200 | border-bottom-color: rgb(254 202 202); |
| border-b-red-300 | border-bottom-color: rgb(252 165 165); |
| border-b-red-400 | border-bottom-color: rgb(248 113 113); |
| border-b-red-500 | border-bottom-color: rgb(239 68 68); |
| border-b-red-600 | border-bottom-color: rgb(220 38 38); |
| border-b-red-700 | border-bottom-color: rgb(185 28 28); |
| border-b-red-800 | border-bottom-color: rgb(153 27 27); |
| border-b-red-900 | border-bottom-color: rgb(127 29 29); |
| border-b-red-950 | border-bottom-color: rgb(69 10 10); |
| border-b-orange-50 | border-bottom-color: rgb(255 247 237); |
| border-b-orange-100 | border-bottom-color: rgb(255 237 213); |
| border-b-orange-200 | border-bottom-color: rgb(254 215 170); |
| border-b-orange-300 | border-bottom-color: rgb(253 186 116); |
| border-b-orange-400 | border-bottom-color: rgb(251 146 60); |
| border-b-orange-500 | border-bottom-color: rgb(249 115 22); |
| border-b-orange-600 | border-bottom-color: rgb(234 88 12); |
| border-b-orange-700 | border-bottom-color: rgb(194 65 12); |
| border-b-orange-800 | border-bottom-color: rgb(154 52 18); |
| border-b-orange-900 | border-bottom-color: rgb(124 45 18); |
| border-b-orange-950 | border-bottom-color: rgb(67 20 7); |
| border-b-amber-50 | border-bottom-color: rgb(255 251 235); |
| border-b-amber-100 | border-bottom-color: rgb(254 243 199); |
| border-b-amber-200 | border-bottom-color: rgb(253 230 138); |
| border-b-amber-300 | border-bottom-color: rgb(252 211 77); |
| border-b-amber-400 | border-bottom-color: rgb(251 191 36); |
| border-b-amber-500 | border-bottom-color: rgb(245 158 11); |
| border-b-amber-600 | border-bottom-color: rgb(217 119 6); |
| border-b-amber-700 | border-bottom-color: rgb(180 83 9); |
| border-b-amber-800 | border-bottom-color: rgb(146 64 14); |
| border-b-amber-900 | border-bottom-color: rgb(120 53 15); |
| border-b-amber-950 | border-bottom-color: rgb(69 26 3); |
| border-b-yellow-50 | border-bottom-color: rgb(254 252 232); |
| border-b-yellow-100 | border-bottom-color: rgb(254 249 195); |
| border-b-yellow-200 | border-bottom-color: rgb(254 240 138); |
| border-b-yellow-300 | border-bottom-color: rgb(253 224 71); |
| border-b-yellow-400 | border-bottom-color: rgb(250 204 21); |
| border-b-yellow-500 | border-bottom-color: rgb(234 179 8); |
| border-b-yellow-600 | border-bottom-color: rgb(202 138 4); |
| border-b-yellow-700 | border-bottom-color: rgb(161 98 7); |
| border-b-yellow-800 | border-bottom-color: rgb(133 77 14); |
| border-b-yellow-900 | border-bottom-color: rgb(113 63 18); |
| border-b-yellow-950 | border-bottom-color: rgb(66 32 6); |
| border-b-lime-50 | border-bottom-color: rgb(247 254 231); |
| border-b-lime-100 | border-bottom-color: rgb(236 252 203); |
| border-b-lime-200 | border-bottom-color: rgb(217 249 157); |
| border-b-lime-300 | border-bottom-color: rgb(190 242 100); |
| border-b-lime-400 | border-bottom-color: rgb(163 230 53); |
| border-b-lime-500 | border-bottom-color: rgb(132 204 22); |
| border-b-lime-600 | border-bottom-color: rgb(101 163 13); |
| border-b-lime-700 | border-bottom-color: rgb(77 124 15); |
| border-b-lime-800 | border-bottom-color: rgb(63 98 18); |
| border-b-lime-900 | border-bottom-color: rgb(54 83 20); |
| border-b-lime-950 | border-bottom-color: rgb(26 46 5); |
| border-b-green-50 | border-bottom-color: rgb(240 253 244); |
| border-b-green-100 | border-bottom-color: rgb(220 252 231); |
| border-b-green-200 | border-bottom-color: rgb(187 247 208); |
| border-b-green-300 | border-bottom-color: rgb(134 239 172); |
| border-b-green-400 | border-bottom-color: rgb(74 222 128); |
| border-b-green-500 | border-bottom-color: rgb(34 197 94); |
| border-b-green-600 | border-bottom-color: rgb(22 163 74); |
| border-b-green-700 | border-bottom-color: rgb(21 128 61); |
| border-b-green-800 | border-bottom-color: rgb(22 101 52); |
| border-b-green-900 | border-bottom-color: rgb(20 83 45); |
| border-b-green-950 | border-bottom-color: rgb(5 46 22); |
| border-b-emerald-50 | border-bottom-color: rgb(236 253 245); |
| border-b-emerald-100 | border-bottom-color: rgb(209 250 229); |
| border-b-emerald-200 | border-bottom-color: rgb(167 243 208); |
| border-b-emerald-300 | border-bottom-color: rgb(110 231 183); |
| border-b-emerald-400 | border-bottom-color: rgb(52 211 153); |
| border-b-emerald-500 | border-bottom-color: rgb(16 185 129); |
| border-b-emerald-600 | border-bottom-color: rgb(5 150 105); |
| border-b-emerald-700 | border-bottom-color: rgb(4 120 87); |
| border-b-emerald-800 | border-bottom-color: rgb(6 95 70); |
| border-b-emerald-900 | border-bottom-color: rgb(6 78 59); |
| border-b-emerald-950 | border-bottom-color: rgb(2 44 34); |
| border-b-teal-50 | border-bottom-color: rgb(240 253 250); |
| border-b-teal-100 | border-bottom-color: rgb(204 251 241); |
| border-b-teal-200 | border-bottom-color: rgb(153 246 228); |
| border-b-teal-300 | border-bottom-color: rgb(94 234 212); |
| border-b-teal-400 | border-bottom-color: rgb(45 212 191); |
| border-b-teal-500 | border-bottom-color: rgb(20 184 166); |
| border-b-teal-600 | border-bottom-color: rgb(13 148 136); |
| border-b-teal-700 | border-bottom-color: rgb(15 118 110); |
| border-b-teal-800 | border-bottom-color: rgb(17 94 89); |
| border-b-teal-900 | border-bottom-color: rgb(19 78 74); |
| border-b-teal-950 | border-bottom-color: rgb(4 47 46); |
| border-b-cyan-50 | border-bottom-color: rgb(236 254 255); |
| border-b-cyan-100 | border-bottom-color: rgb(207 250 254); |
| border-b-cyan-200 | border-bottom-color: rgb(165 243 252); |
| border-b-cyan-300 | border-bottom-color: rgb(103 232 249); |
| border-b-cyan-400 | border-bottom-color: rgb(34 211 238); |
| border-b-cyan-500 | border-bottom-color: rgb(6 182 212); |
| border-b-cyan-600 | border-bottom-color: rgb(8 145 178); |
| border-b-cyan-700 | border-bottom-color: rgb(14 116 144); |
| border-b-cyan-800 | border-bottom-color: rgb(21 94 117); |
| border-b-cyan-900 | border-bottom-color: rgb(22 78 99); |
| border-b-cyan-950 | border-bottom-color: rgb(8 51 68); |
| border-b-sky-50 | border-bottom-color: rgb(240 249 255); |
| border-b-sky-100 | border-bottom-color: rgb(224 242 254); |
| border-b-sky-200 | border-bottom-color: rgb(186 230 253); |
| border-b-sky-300 | border-bottom-color: rgb(125 211 252); |
| border-b-sky-400 | border-bottom-color: rgb(56 189 248); |
| border-b-sky-500 | border-bottom-color: rgb(14 165 233); |
| border-b-sky-600 | border-bottom-color: rgb(2 132 199); |
| border-b-sky-700 | border-bottom-color: rgb(3 105 161); |
| border-b-sky-800 | border-bottom-color: rgb(7 89 133); |
| border-b-sky-900 | border-bottom-color: rgb(12 74 110); |
| border-b-sky-950 | border-bottom-color: rgb(8 47 73); |
| border-b-blue-50 | border-bottom-color: rgb(239 246 255); |
| border-b-blue-100 | border-bottom-color: rgb(219 234 254); |
| border-b-blue-200 | border-bottom-color: rgb(191 219 254); |
| border-b-blue-300 | border-bottom-color: rgb(147 197 253); |
| border-b-blue-400 | border-bottom-color: rgb(96 165 250); |
| border-b-blue-500 | border-bottom-color: rgb(59 130 246); |
| border-b-blue-600 | border-bottom-color: rgb(37 99 235); |
| border-b-blue-700 | border-bottom-color: rgb(29 78 216); |
| border-b-blue-800 | border-bottom-color: rgb(30 64 175); |
| border-b-blue-900 | border-bottom-color: rgb(30 58 138); |
| border-b-blue-950 | border-bottom-color: rgb(23 37 84); |
| border-b-indigo-50 | border-bottom-color: rgb(238 242 255); |
| border-b-indigo-100 | border-bottom-color: rgb(224 231 255); |
| border-b-indigo-200 | border-bottom-color: rgb(199 210 254); |
| border-b-indigo-300 | border-bottom-color: rgb(165 180 252); |
| border-b-indigo-400 | border-bottom-color: rgb(129 140 248); |
| border-b-indigo-500 | border-bottom-color: rgb(99 102 241); |
| border-b-indigo-600 | border-bottom-color: rgb(79 70 229); |
| border-b-indigo-700 | border-bottom-color: rgb(67 56 202); |
| border-b-indigo-800 | border-bottom-color: rgb(55 48 163); |
| border-b-indigo-900 | border-bottom-color: rgb(49 46 129); |
| border-b-indigo-950 | border-bottom-color: rgb(30 27 75); |
| border-b-violet-50 | border-bottom-color: rgb(245 243 255); |
| border-b-violet-100 | border-bottom-color: rgb(237 233 254); |
| border-b-violet-200 | border-bottom-color: rgb(221 214 254); |
| border-b-violet-300 | border-bottom-color: rgb(196 181 253); |
| border-b-violet-400 | border-bottom-color: rgb(167 139 250); |
| border-b-violet-500 | border-bottom-color: rgb(139 92 246); |
| border-b-violet-600 | border-bottom-color: rgb(124 58 237); |
| border-b-violet-700 | border-bottom-color: rgb(109 40 217); |
| border-b-violet-800 | border-bottom-color: rgb(91 33 182); |
| border-b-violet-900 | border-bottom-color: rgb(76 29 149); |
| border-b-violet-950 | border-bottom-color: rgb(46 16 101); |
| border-b-purple-50 | border-bottom-color: rgb(250 245 255); |
| border-b-purple-100 | border-bottom-color: rgb(243 232 255); |
| border-b-purple-200 | border-bottom-color: rgb(233 213 255); |
| border-b-purple-300 | border-bottom-color: rgb(216 180 254); |
| border-b-purple-400 | border-bottom-color: rgb(192 132 252); |
| border-b-purple-500 | border-bottom-color: rgb(168 85 247); |
| border-b-purple-600 | border-bottom-color: rgb(147 51 234); |
| border-b-purple-700 | border-bottom-color: rgb(126 34 206); |
| border-b-purple-800 | border-bottom-color: rgb(107 33 168); |
| border-b-purple-900 | border-bottom-color: rgb(88 28 135); |
| border-b-purple-950 | border-bottom-color: rgb(59 7 100); |
| border-b-fuchsia-50 | border-bottom-color: rgb(253 244 255); |
| border-b-fuchsia-100 | border-bottom-color: rgb(250 232 255); |
| border-b-fuchsia-200 | border-bottom-color: rgb(245 208 254); |
| border-b-fuchsia-300 | border-bottom-color: rgb(240 171 252); |
| border-b-fuchsia-400 | border-bottom-color: rgb(232 121 249); |
| border-b-fuchsia-500 | border-bottom-color: rgb(217 70 239); |
| border-b-fuchsia-600 | border-bottom-color: rgb(192 38 211); |
| border-b-fuchsia-700 | border-bottom-color: rgb(162 28 175); |
| border-b-fuchsia-800 | border-bottom-color: rgb(134 25 143); |
| border-b-fuchsia-900 | border-bottom-color: rgb(112 26 117); |
| border-b-fuchsia-950 | border-bottom-color: rgb(74 4 78); |
| border-b-pink-50 | border-bottom-color: rgb(253 242 248); |
| border-b-pink-100 | border-bottom-color: rgb(252 231 243); |
| border-b-pink-200 | border-bottom-color: rgb(251 207 232); |
| border-b-pink-300 | border-bottom-color: rgb(249 168 212); |
| border-b-pink-400 | border-bottom-color: rgb(244 114 182); |
| border-b-pink-500 | border-bottom-color: rgb(236 72 153); |
| border-b-pink-600 | border-bottom-color: rgb(219 39 119); |
| border-b-pink-700 | border-bottom-color: rgb(190 24 93); |
| border-b-pink-800 | border-bottom-color: rgb(157 23 77); |
| border-b-pink-900 | border-bottom-color: rgb(131 24 67); |
| border-b-pink-950 | border-bottom-color: rgb(80 7 36); |
| border-b-rose-50 | border-bottom-color: rgb(255 241 242); |
| border-b-rose-100 | border-bottom-color: rgb(255 228 230); |
| border-b-rose-200 | border-bottom-color: rgb(254 205 211); |
| border-b-rose-300 | border-bottom-color: rgb(253 164 175); |
| border-b-rose-400 | border-bottom-color: rgb(251 113 133); |
| border-b-rose-500 | border-bottom-color: rgb(244 63 94); |
| border-b-rose-600 | border-bottom-color: rgb(225 29 72); |
| border-b-rose-700 | border-bottom-color: rgb(190 18 60); |
| border-b-rose-800 | border-bottom-color: rgb(159 18 57); |
| border-b-rose-900 | border-bottom-color: rgb(136 19 55); |
| border-b-rose-950 | border-bottom-color: rgb(76 5 25); |
| border-l-inherit | border-left-color: inherit; |
| border-l-current | border-left-color: currentColor; |
| border-l-transparent | border-left-color: transparent; |
| border-l-black | border-left-color: rgb(0 0 0); |
| border-l-white | border-left-color: rgb(255 255 255); |
| border-l-slate-50 | border-left-color: rgb(248 250 252); |
| border-l-slate-100 | border-left-color: rgb(241 245 249); |
| border-l-slate-200 | border-left-color: rgb(226 232 240); |
| border-l-slate-300 | border-left-color: rgb(203 213 225); |
| border-l-slate-400 | border-left-color: rgb(148 163 184); |
| border-l-slate-500 | border-left-color: rgb(100 116 139); |
| border-l-slate-600 | border-left-color: rgb(71 85 105); |
| border-l-slate-700 | border-left-color: rgb(51 65 85); |
| border-l-slate-800 | border-left-color: rgb(30 41 59); |
| border-l-slate-900 | border-left-color: rgb(15 23 42); |
| border-l-slate-950 | border-left-color: rgb(2 6 23); |
| border-l-gray-50 | border-left-color: rgb(249 250 251); |
| border-l-gray-100 | border-left-color: rgb(243 244 246); |
| border-l-gray-200 | border-left-color: rgb(229 231 235); |
| border-l-gray-300 | border-left-color: rgb(209 213 219); |
| border-l-gray-400 | border-left-color: rgb(156 163 175); |
| border-l-gray-500 | border-left-color: rgb(107 114 128); |
| border-l-gray-600 | border-left-color: rgb(75 85 99); |
| border-l-gray-700 | border-left-color: rgb(55 65 81); |
| border-l-gray-800 | border-left-color: rgb(31 41 55); |
| border-l-gray-900 | border-left-color: rgb(17 24 39); |
| border-l-gray-950 | border-left-color: rgb(3 7 18); |
| border-l-zinc-50 | border-left-color: rgb(250 250 250); |
| border-l-zinc-100 | border-left-color: rgb(244 244 245); |
| border-l-zinc-200 | border-left-color: rgb(228 228 231); |
| border-l-zinc-300 | border-left-color: rgb(212 212 216); |
| border-l-zinc-400 | border-left-color: rgb(161 161 170); |
| border-l-zinc-500 | border-left-color: rgb(113 113 122); |
| border-l-zinc-600 | border-left-color: rgb(82 82 91); |
| border-l-zinc-700 | border-left-color: rgb(63 63 70); |
| border-l-zinc-800 | border-left-color: rgb(39 39 42); |
| border-l-zinc-900 | border-left-color: rgb(24 24 27); |
| border-l-zinc-950 | border-left-color: rgb(9 9 11); |
| border-l-neutral-50 | border-left-color: rgb(250 250 250); |
| border-l-neutral-100 | border-left-color: rgb(245 245 245); |
| border-l-neutral-200 | border-left-color: rgb(229 229 229); |
| border-l-neutral-300 | border-left-color: rgb(212 212 212); |
| border-l-neutral-400 | border-left-color: rgb(163 163 163); |
| border-l-neutral-500 | border-left-color: rgb(115 115 115); |
| border-l-neutral-600 | border-left-color: rgb(82 82 82); |
| border-l-neutral-700 | border-left-color: rgb(64 64 64); |
| border-l-neutral-800 | border-left-color: rgb(38 38 38); |
| border-l-neutral-900 | border-left-color: rgb(23 23 23); |
| border-l-neutral-950 | border-left-color: rgb(10 10 10); |
| border-l-stone-50 | border-left-color: rgb(250 250 249); |
| border-l-stone-100 | border-left-color: rgb(245 245 244); |
| border-l-stone-200 | border-left-color: rgb(231 229 228); |
| border-l-stone-300 | border-left-color: rgb(214 211 209); |
| border-l-stone-400 | border-left-color: rgb(168 162 158); |
| border-l-stone-500 | border-left-color: rgb(120 113 108); |
| border-l-stone-600 | border-left-color: rgb(87 83 78); |
| border-l-stone-700 | border-left-color: rgb(68 64 60); |
| border-l-stone-800 | border-left-color: rgb(41 37 36); |
| border-l-stone-900 | border-left-color: rgb(28 25 23); |
| border-l-stone-950 | border-left-color: rgb(12 10 9); |
| border-l-red-50 | border-left-color: rgb(254 242 242); |
| border-l-red-100 | border-left-color: rgb(254 226 226); |
| border-l-red-200 | border-left-color: rgb(254 202 202); |
| border-l-red-300 | border-left-color: rgb(252 165 165); |
| border-l-red-400 | border-left-color: rgb(248 113 113); |
| border-l-red-500 | border-left-color: rgb(239 68 68); |
| border-l-red-600 | border-left-color: rgb(220 38 38); |
| border-l-red-700 | border-left-color: rgb(185 28 28); |
| border-l-red-800 | border-left-color: rgb(153 27 27); |
| border-l-red-900 | border-left-color: rgb(127 29 29); |
| border-l-red-950 | border-left-color: rgb(69 10 10); |
| border-l-orange-50 | border-left-color: rgb(255 247 237); |
| border-l-orange-100 | border-left-color: rgb(255 237 213); |
| border-l-orange-200 | border-left-color: rgb(254 215 170); |
| border-l-orange-300 | border-left-color: rgb(253 186 116); |
| border-l-orange-400 | border-left-color: rgb(251 146 60); |
| border-l-orange-500 | border-left-color: rgb(249 115 22); |
| border-l-orange-600 | border-left-color: rgb(234 88 12); |
| border-l-orange-700 | border-left-color: rgb(194 65 12); |
| border-l-orange-800 | border-left-color: rgb(154 52 18); |
| border-l-orange-900 | border-left-color: rgb(124 45 18); |
| border-l-orange-950 | border-left-color: rgb(67 20 7); |
| border-l-amber-50 | border-left-color: rgb(255 251 235); |
| border-l-amber-100 | border-left-color: rgb(254 243 199); |
| border-l-amber-200 | border-left-color: rgb(253 230 138); |
| border-l-amber-300 | border-left-color: rgb(252 211 77); |
| border-l-amber-400 | border-left-color: rgb(251 191 36); |
| border-l-amber-500 | border-left-color: rgb(245 158 11); |
| border-l-amber-600 | border-left-color: rgb(217 119 6); |
| border-l-amber-700 | border-left-color: rgb(180 83 9); |
| border-l-amber-800 | border-left-color: rgb(146 64 14); |
| border-l-amber-900 | border-left-color: rgb(120 53 15); |
| border-l-amber-950 | border-left-color: rgb(69 26 3); |
| border-l-yellow-50 | border-left-color: rgb(254 252 232); |
| border-l-yellow-100 | border-left-color: rgb(254 249 195); |
| border-l-yellow-200 | border-left-color: rgb(254 240 138); |
| border-l-yellow-300 | border-left-color: rgb(253 224 71); |
| border-l-yellow-400 | border-left-color: rgb(250 204 21); |
| border-l-yellow-500 | border-left-color: rgb(234 179 8); |
| border-l-yellow-600 | border-left-color: rgb(202 138 4); |
| border-l-yellow-700 | border-left-color: rgb(161 98 7); |
| border-l-yellow-800 | border-left-color: rgb(133 77 14); |
| border-l-yellow-900 | border-left-color: rgb(113 63 18); |
| border-l-yellow-950 | border-left-color: rgb(66 32 6); |
| border-l-lime-50 | border-left-color: rgb(247 254 231); |
| border-l-lime-100 | border-left-color: rgb(236 252 203); |
| border-l-lime-200 | border-left-color: rgb(217 249 157); |
| border-l-lime-300 | border-left-color: rgb(190 242 100); |
| border-l-lime-400 | border-left-color: rgb(163 230 53); |
| border-l-lime-500 | border-left-color: rgb(132 204 22); |
| border-l-lime-600 | border-left-color: rgb(101 163 13); |
| border-l-lime-700 | border-left-color: rgb(77 124 15); |
| border-l-lime-800 | border-left-color: rgb(63 98 18); |
| border-l-lime-900 | border-left-color: rgb(54 83 20); |
| border-l-lime-950 | border-left-color: rgb(26 46 5); |
| border-l-green-50 | border-left-color: rgb(240 253 244); |
| border-l-green-100 | border-left-color: rgb(220 252 231); |
| border-l-green-200 | border-left-color: rgb(187 247 208); |
| border-l-green-300 | border-left-color: rgb(134 239 172); |
| border-l-green-400 | border-left-color: rgb(74 222 128); |
| border-l-green-500 | border-left-color: rgb(34 197 94); |
| border-l-green-600 | border-left-color: rgb(22 163 74); |
| border-l-green-700 | border-left-color: rgb(21 128 61); |
| border-l-green-800 | border-left-color: rgb(22 101 52); |
| border-l-green-900 | border-left-color: rgb(20 83 45); |
| border-l-green-950 | border-left-color: rgb(5 46 22); |
| border-l-emerald-50 | border-left-color: rgb(236 253 245); |
| border-l-emerald-100 | border-left-color: rgb(209 250 229); |
| border-l-emerald-200 | border-left-color: rgb(167 243 208); |
| border-l-emerald-300 | border-left-color: rgb(110 231 183); |
| border-l-emerald-400 | border-left-color: rgb(52 211 153); |
| border-l-emerald-500 | border-left-color: rgb(16 185 129); |
| border-l-emerald-600 | border-left-color: rgb(5 150 105); |
| border-l-emerald-700 | border-left-color: rgb(4 120 87); |
| border-l-emerald-800 | border-left-color: rgb(6 95 70); |
| border-l-emerald-900 | border-left-color: rgb(6 78 59); |
| border-l-emerald-950 | border-left-color: rgb(2 44 34); |
| border-l-teal-50 | border-left-color: rgb(240 253 250); |
| border-l-teal-100 | border-left-color: rgb(204 251 241); |
| border-l-teal-200 | border-left-color: rgb(153 246 228); |
| border-l-teal-300 | border-left-color: rgb(94 234 212); |
| border-l-teal-400 | border-left-color: rgb(45 212 191); |
| border-l-teal-500 | border-left-color: rgb(20 184 166); |
| border-l-teal-600 | border-left-color: rgb(13 148 136); |
| border-l-teal-700 | border-left-color: rgb(15 118 110); |
| border-l-teal-800 | border-left-color: rgb(17 94 89); |
| border-l-teal-900 | border-left-color: rgb(19 78 74); |
| border-l-teal-950 | border-left-color: rgb(4 47 46); |
| border-l-cyan-50 | border-left-color: rgb(236 254 255); |
| border-l-cyan-100 | border-left-color: rgb(207 250 254); |
| border-l-cyan-200 | border-left-color: rgb(165 243 252); |
| border-l-cyan-300 | border-left-color: rgb(103 232 249); |
| border-l-cyan-400 | border-left-color: rgb(34 211 238); |
| border-l-cyan-500 | border-left-color: rgb(6 182 212); |
| border-l-cyan-600 | border-left-color: rgb(8 145 178); |
| border-l-cyan-700 | border-left-color: rgb(14 116 144); |
| border-l-cyan-800 | border-left-color: rgb(21 94 117); |
| border-l-cyan-900 | border-left-color: rgb(22 78 99); |
| border-l-cyan-950 | border-left-color: rgb(8 51 68); |
| border-l-sky-50 | border-left-color: rgb(240 249 255); |
| border-l-sky-100 | border-left-color: rgb(224 242 254); |
| border-l-sky-200 | border-left-color: rgb(186 230 253); |
| border-l-sky-300 | border-left-color: rgb(125 211 252); |
| border-l-sky-400 | border-left-color: rgb(56 189 248); |
| border-l-sky-500 | border-left-color: rgb(14 165 233); |
| border-l-sky-600 | border-left-color: rgb(2 132 199); |
| border-l-sky-700 | border-left-color: rgb(3 105 161); |
| border-l-sky-800 | border-left-color: rgb(7 89 133); |
| border-l-sky-900 | border-left-color: rgb(12 74 110); |
| border-l-sky-950 | border-left-color: rgb(8 47 73); |
| border-l-blue-50 | border-left-color: rgb(239 246 255); |
| border-l-blue-100 | border-left-color: rgb(219 234 254); |
| border-l-blue-200 | border-left-color: rgb(191 219 254); |
| border-l-blue-300 | border-left-color: rgb(147 197 253); |
| border-l-blue-400 | border-left-color: rgb(96 165 250); |
| border-l-blue-500 | border-left-color: rgb(59 130 246); |
| border-l-blue-600 | border-left-color: rgb(37 99 235); |
| border-l-blue-700 | border-left-color: rgb(29 78 216); |
| border-l-blue-800 | border-left-color: rgb(30 64 175); |
| border-l-blue-900 | border-left-color: rgb(30 58 138); |
| border-l-blue-950 | border-left-color: rgb(23 37 84); |
| border-l-indigo-50 | border-left-color: rgb(238 242 255); |
| border-l-indigo-100 | border-left-color: rgb(224 231 255); |
| border-l-indigo-200 | border-left-color: rgb(199 210 254); |
| border-l-indigo-300 | border-left-color: rgb(165 180 252); |
| border-l-indigo-400 | border-left-color: rgb(129 140 248); |
| border-l-indigo-500 | border-left-color: rgb(99 102 241); |
| border-l-indigo-600 | border-left-color: rgb(79 70 229); |
| border-l-indigo-700 | border-left-color: rgb(67 56 202); |
| border-l-indigo-800 | border-left-color: rgb(55 48 163); |
| border-l-indigo-900 | border-left-color: rgb(49 46 129); |
| border-l-indigo-950 | border-left-color: rgb(30 27 75); |
| border-l-violet-50 | border-left-color: rgb(245 243 255); |
| border-l-violet-100 | border-left-color: rgb(237 233 254); |
| border-l-violet-200 | border-left-color: rgb(221 214 254); |
| border-l-violet-300 | border-left-color: rgb(196 181 253); |
| border-l-violet-400 | border-left-color: rgb(167 139 250); |
| border-l-violet-500 | border-left-color: rgb(139 92 246); |
| border-l-violet-600 | border-left-color: rgb(124 58 237); |
| border-l-violet-700 | border-left-color: rgb(109 40 217); |
| border-l-violet-800 | border-left-color: rgb(91 33 182); |
| border-l-violet-900 | border-left-color: rgb(76 29 149); |
| border-l-violet-950 | border-left-color: rgb(46 16 101); |
| border-l-purple-50 | border-left-color: rgb(250 245 255); |
| border-l-purple-100 | border-left-color: rgb(243 232 255); |
| border-l-purple-200 | border-left-color: rgb(233 213 255); |
| border-l-purple-300 | border-left-color: rgb(216 180 254); |
| border-l-purple-400 | border-left-color: rgb(192 132 252); |
| border-l-purple-500 | border-left-color: rgb(168 85 247); |
| border-l-purple-600 | border-left-color: rgb(147 51 234); |
| border-l-purple-700 | border-left-color: rgb(126 34 206); |
| border-l-purple-800 | border-left-color: rgb(107 33 168); |
| border-l-purple-900 | border-left-color: rgb(88 28 135); |
| border-l-purple-950 | border-left-color: rgb(59 7 100); |
| border-l-fuchsia-50 | border-left-color: rgb(253 244 255); |
| border-l-fuchsia-100 | border-left-color: rgb(250 232 255); |
| border-l-fuchsia-200 | border-left-color: rgb(245 208 254); |
| border-l-fuchsia-300 | border-left-color: rgb(240 171 252); |
| border-l-fuchsia-400 | border-left-color: rgb(232 121 249); |
| border-l-fuchsia-500 | border-left-color: rgb(217 70 239); |
| border-l-fuchsia-600 | border-left-color: rgb(192 38 211); |
| border-l-fuchsia-700 | border-left-color: rgb(162 28 175); |
| border-l-fuchsia-800 | border-left-color: rgb(134 25 143); |
| border-l-fuchsia-900 | border-left-color: rgb(112 26 117); |
| border-l-fuchsia-950 | border-left-color: rgb(74 4 78); |
| border-l-pink-50 | border-left-color: rgb(253 242 248); |
| border-l-pink-100 | border-left-color: rgb(252 231 243); |
| border-l-pink-200 | border-left-color: rgb(251 207 232); |
| border-l-pink-300 | border-left-color: rgb(249 168 212); |
| border-l-pink-400 | border-left-color: rgb(244 114 182); |
| border-l-pink-500 | border-left-color: rgb(236 72 153); |
| border-l-pink-600 | border-left-color: rgb(219 39 119); |
| border-l-pink-700 | border-left-color: rgb(190 24 93); |
| border-l-pink-800 | border-left-color: rgb(157 23 77); |
| border-l-pink-900 | border-left-color: rgb(131 24 67); |
| border-l-pink-950 | border-left-color: rgb(80 7 36); |
| border-l-rose-50 | border-left-color: rgb(255 241 242); |
| border-l-rose-100 | border-left-color: rgb(255 228 230); |
| border-l-rose-200 | border-left-color: rgb(254 205 211); |
| border-l-rose-300 | border-left-color: rgb(253 164 175); |
| border-l-rose-400 | border-left-color: rgb(251 113 133); |
| border-l-rose-500 | border-left-color: rgb(244 63 94); |
| border-l-rose-600 | border-left-color: rgb(225 29 72); |
| border-l-rose-700 | border-left-color: rgb(190 18 60); |
| border-l-rose-800 | border-left-color: rgb(159 18 57); |
| border-l-rose-900 | border-left-color: rgb(136 19 55); |
| border-l-rose-950 | border-left-color: rgb(76 5 25); |
边框样式
| 类 | 对应的 CSS |
|---|---|
| border-solid | border-style: solid; |
| border-dashed | border-style: dashed; |
| border-dotted | border-style: dotted; |
| border-double | border-style: double; |
| border-hidden | border-style: hidden; |
| border-none | border-style: none; |
阴影位置
| 类 | 对应的 CSS |
|---|---|
| shadow-sm | box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); |
| shadow | box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); |
| shadow-md | box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); |
| shadow-lg | box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); |
| shadow-xl | box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); |
| shadow-2xl | box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); |
| shadow-inner | box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); |
| shadow-none | box-shadow: 0 0 #0000; |
阴影颜色
| 类 | 对应的 CSS |
|---|---|
| shadow-inherit | --tw-shadow-color: inherit; |
| shadow-current | --tw-shadow-color: currentColor; |
| shadow-transparent | --tw-shadow-color: transparent; |
| shadow-black | --tw-shadow-color: #000; |
| shadow-white | --tw-shadow-color: #fff; |
| shadow-slate-50 | --tw-shadow-color: #f8fafc; |
| shadow-slate-100 | --tw-shadow-color: #f1f5f9; |
| shadow-slate-200 | --tw-shadow-color: #e2e8f0; |
| shadow-slate-300 | --tw-shadow-color: #cbd5e1; |
| shadow-slate-400 | --tw-shadow-color: #94a3b8; |
| shadow-slate-500 | --tw-shadow-color: #64748b; |
| shadow-slate-600 | --tw-shadow-color: #475569; |
| shadow-slate-700 | --tw-shadow-color: #334155; |
| shadow-slate-800 | --tw-shadow-color: #1e293b; |
| shadow-slate-900 | --tw-shadow-color: #0f172a; |
| shadow-slate-950 | --tw-shadow-color: #020617; |
| shadow-gray-50 | --tw-shadow-color: #f9fafb; |
| shadow-gray-100 | --tw-shadow-color: #f3f4f6; |
| shadow-gray-200 | --tw-shadow-color: #e5e7eb; |
| shadow-gray-300 | --tw-shadow-color: #d1d5db; |
| shadow-gray-400 | --tw-shadow-color: #9ca3af; |
| shadow-gray-500 | --tw-shadow-color: #6b7280; |
| shadow-gray-600 | --tw-shadow-color: #4b5563; |
| shadow-gray-700 | --tw-shadow-color: #374151; |
| shadow-gray-800 | --tw-shadow-color: #1f2937; |
| shadow-gray-900 | --tw-shadow-color: #111827; |
| shadow-gray-950 | --tw-shadow-color: #030712; |
| shadow-zinc-50 | --tw-shadow-color: #fafafa; |
| shadow-zinc-100 | --tw-shadow-color: #f4f4f5; |
| shadow-zinc-200 | --tw-shadow-color: #e4e4e7; |
| shadow-zinc-300 | --tw-shadow-color: #d4d4d8; |
| shadow-zinc-400 | --tw-shadow-color: #a1a1aa; |
| shadow-zinc-500 | --tw-shadow-color: #71717a; |
| shadow-zinc-600 | --tw-shadow-color: #52525b; |
| shadow-zinc-700 | --tw-shadow-color: #3f3f46; |
| shadow-zinc-800 | --tw-shadow-color: #27272a; |
| shadow-zinc-900 | --tw-shadow-color: #18181b; |
| shadow-zinc-950 | --tw-shadow-color: #09090b; |
| shadow-neutral-50 | --tw-shadow-color: #fafafa; |
| shadow-neutral-100 | --tw-shadow-color: #f5f5f5; |
| shadow-neutral-200 | --tw-shadow-color: #e5e5e5; |
| shadow-neutral-300 | --tw-shadow-color: #d4d4d4; |
| shadow-neutral-400 | --tw-shadow-color: #a3a3a3; |
| shadow-neutral-500 | --tw-shadow-color: #737373; |
| shadow-neutral-600 | --tw-shadow-color: #525252; |
| shadow-neutral-700 | --tw-shadow-color: #404040; |
| shadow-neutral-800 | --tw-shadow-color: #262626; |
| shadow-neutral-900 | --tw-shadow-color: #171717; |
| shadow-neutral-950 | --tw-shadow-color: #0a0a0a; |
| shadow-stone-50 | --tw-shadow-color: #fafaf9; |
| shadow-stone-100 | --tw-shadow-color: #f5f5f4; |
| shadow-stone-200 | --tw-shadow-color: #e7e5e4; |
| shadow-stone-300 | --tw-shadow-color: #d6d3d1; |
| shadow-stone-400 | --tw-shadow-color: #a8a29e; |
| shadow-stone-500 | --tw-shadow-color: #78716c; |
| shadow-stone-600 | --tw-shadow-color: #57534e; |
| shadow-stone-700 | --tw-shadow-color: #44403c; |
| shadow-stone-800 | --tw-shadow-color: #292524; |
| shadow-stone-900 | --tw-shadow-color: #1c1917; |
| shadow-stone-950 | --tw-shadow-color: #0c0a09; |
| shadow-red-50 | --tw-shadow-color: #fef2f2; |
| shadow-red-100 | --tw-shadow-color: #fee2e2; |
| shadow-red-200 | --tw-shadow-color: #fecaca; |
| shadow-red-300 | --tw-shadow-color: #fca5a5; |
| shadow-red-400 | --tw-shadow-color: #f87171; |
| shadow-red-500 | --tw-shadow-color: #ef4444; |
| shadow-red-600 | --tw-shadow-color: #dc2626; |
| shadow-red-700 | --tw-shadow-color: #b91c1c; |
| shadow-red-800 | --tw-shadow-color: #991b1b; |
| shadow-red-900 | --tw-shadow-color: #7f1d1d; |
| shadow-red-950 | --tw-shadow-color: #450a0a; |
| shadow-orange-50 | --tw-shadow-color: #fff7ed; |
| shadow-orange-100 | --tw-shadow-color: #ffedd5; |
| shadow-orange-200 | --tw-shadow-color: #fed7aa; |
| shadow-orange-300 | --tw-shadow-color: #fdba74; |
| shadow-orange-400 | --tw-shadow-color: #fb923c; |
| shadow-orange-500 | --tw-shadow-color: #f97316; |
| shadow-orange-600 | --tw-shadow-color: #ea580c; |
| shadow-orange-700 | --tw-shadow-color: #c2410c; |
| shadow-orange-800 | --tw-shadow-color: #9a3412; |
| shadow-orange-900 | --tw-shadow-color: #7c2d12; |
| shadow-orange-950 | --tw-shadow-color: #431407; |
| shadow-amber-50 | --tw-shadow-color: #fffbeb; |
| shadow-amber-100 | --tw-shadow-color: #fef3c7; |
| shadow-amber-200 | --tw-shadow-color: #fde68a; |
| shadow-amber-300 | --tw-shadow-color: #fcd34d; |
| shadow-amber-400 | --tw-shadow-color: #fbbf24; |
| shadow-amber-500 | --tw-shadow-color: #f59e0b; |
| shadow-amber-600 | --tw-shadow-color: #d97706; |
| shadow-amber-700 | --tw-shadow-color: #b45309; |
| shadow-amber-800 | --tw-shadow-color: #92400e; |
| shadow-amber-900 | --tw-shadow-color: #78350f; |
| shadow-amber-950 | --tw-shadow-color: #451a03; |
| shadow-yellow-50 | --tw-shadow-color: #fefce8; |
| shadow-yellow-100 | --tw-shadow-color: #fef9c3; |
| shadow-yellow-200 | --tw-shadow-color: #fef08a; |
| shadow-yellow-300 | --tw-shadow-color: #fde047; |
| shadow-yellow-400 | --tw-shadow-color: #facc15; |
| shadow-yellow-500 | --tw-shadow-color: #eab308; |
| shadow-yellow-600 | --tw-shadow-color: #ca8a04; |
| shadow-yellow-700 | --tw-shadow-color: #a16207; |
| shadow-yellow-800 | --tw-shadow-color: #854d0e; |
| shadow-yellow-900 | --tw-shadow-color: #713f12; |
| shadow-yellow-950 | --tw-shadow-color: #422006; |
| shadow-lime-50 | --tw-shadow-color: #f7fee7; |
| shadow-lime-100 | --tw-shadow-color: #ecfccb; |
| shadow-lime-200 | --tw-shadow-color: #d9f99d; |
| shadow-lime-300 | --tw-shadow-color: #bef264; |
| shadow-lime-400 | --tw-shadow-color: #a3e635; |
| shadow-lime-500 | --tw-shadow-color: #84cc16; |
| shadow-lime-600 | --tw-shadow-color: #65a30d; |
| shadow-lime-700 | --tw-shadow-color: #4d7c0f; |
| shadow-lime-800 | --tw-shadow-color: #3f6212; |
| shadow-lime-900 | --tw-shadow-color: #365314; |
| shadow-lime-950 | --tw-shadow-color: #1a2e05; |
| shadow-green-50 | --tw-shadow-color: #f0fdf4; |
| shadow-green-100 | --tw-shadow-color: #dcfce7; |
| shadow-green-200 | --tw-shadow-color: #bbf7d0; |
| shadow-green-300 | --tw-shadow-color: #86efac; |
| shadow-green-400 | --tw-shadow-color: #4ade80; |
| shadow-green-500 | --tw-shadow-color: #22c55e; |
| shadow-green-600 | --tw-shadow-color: #16a34a; |
| shadow-green-700 | --tw-shadow-color: #15803d; |
| shadow-green-800 | --tw-shadow-color: #166534; |
| shadow-green-900 | --tw-shadow-color: #14532d; |
| shadow-green-950 | --tw-shadow-color: #052e16; |
| shadow-emerald-50 | --tw-shadow-color: #ecfdf5; |
| shadow-emerald-100 | --tw-shadow-color: #d1fae5; |
| shadow-emerald-200 | --tw-shadow-color: #a7f3d0; |
| shadow-emerald-300 | --tw-shadow-color: #6ee7b7; |
| shadow-emerald-400 | --tw-shadow-color: #34d399; |
| shadow-emerald-500 | --tw-shadow-color: #10b981; |
| shadow-emerald-600 | --tw-shadow-color: #059669; |
| shadow-emerald-700 | --tw-shadow-color: #047857; |
| shadow-emerald-800 | --tw-shadow-color: #065f46; |
| shadow-emerald-900 | --tw-shadow-color: #064e3b; |
| shadow-emerald-950 | --tw-shadow-color: #022c22; |
| shadow-teal-50 | --tw-shadow-color: #f0fdfa; |
| shadow-teal-100 | --tw-shadow-color: #ccfbf1; |
| shadow-teal-200 | --tw-shadow-color: #99f6e4; |
| shadow-teal-300 | --tw-shadow-color: #5eead4; |
| shadow-teal-400 | --tw-shadow-color: #2dd4bf; |
| shadow-teal-500 | --tw-shadow-color: #14b8a6; |
| shadow-teal-600 | --tw-shadow-color: #0d9488; |
| shadow-teal-700 | --tw-shadow-color: #0f766e; |
| shadow-teal-800 | --tw-shadow-color: #115e59; |
| shadow-teal-900 | --tw-shadow-color: #134e4a; |
| shadow-teal-950 | --tw-shadow-color: #042f2e; |
| shadow-cyan-50 | --tw-shadow-color: #ecfeff; |
| shadow-cyan-100 | --tw-shadow-color: #cffafe; |
| shadow-cyan-200 | --tw-shadow-color: #a5f3fc; |
| shadow-cyan-300 | --tw-shadow-color: #67e8f9; |
| shadow-cyan-400 | --tw-shadow-color: #22d3ee; |
| shadow-cyan-500 | --tw-shadow-color: #06b6d4; |
| shadow-cyan-600 | --tw-shadow-color: #0891b2; |
| shadow-cyan-700 | --tw-shadow-color: #0e7490; |
| shadow-cyan-800 | --tw-shadow-color: #155e75; |
| shadow-cyan-900 | --tw-shadow-color: #164e63; |
| shadow-cyan-950 | --tw-shadow-color: #083344; |
| shadow-sky-50 | --tw-shadow-color: #f0f9ff; |
| shadow-sky-100 | --tw-shadow-color: #e0f2fe; |
| shadow-sky-200 | --tw-shadow-color: #bae6fd; |
| shadow-sky-300 | --tw-shadow-color: #7dd3fc; |
| shadow-sky-400 | --tw-shadow-color: #38bdf8; |
| shadow-sky-500 | --tw-shadow-color: #0ea5e9; |
| shadow-sky-600 | --tw-shadow-color: #0284c7; |
| shadow-sky-700 | --tw-shadow-color: #0369a1; |
| shadow-sky-800 | --tw-shadow-color: #075985; |
| shadow-sky-900 | --tw-shadow-color: #0c4a6e; |
| shadow-sky-950 | --tw-shadow-color: #082f49; |
| shadow-blue-50 | --tw-shadow-color: #eff6ff; |
| shadow-blue-100 | --tw-shadow-color: #dbeafe; |
| shadow-blue-200 | --tw-shadow-color: #bfdbfe; |
| shadow-blue-300 | --tw-shadow-color: #93c5fd; |
| shadow-blue-400 | --tw-shadow-color: #60a5fa; |
| shadow-blue-500 | --tw-shadow-color: #3b82f6; |
| shadow-blue-600 | --tw-shadow-color: #2563eb; |
| shadow-blue-700 | --tw-shadow-color: #1d4ed8; |
| shadow-blue-800 | --tw-shadow-color: #1e40af; |
| shadow-blue-900 | --tw-shadow-color: #1e3a8a; |
| shadow-blue-950 | --tw-shadow-color: #172554; |
| shadow-indigo-50 | --tw-shadow-color: #eef2ff; |
| shadow-indigo-100 | --tw-shadow-color: #e0e7ff; |
| shadow-indigo-200 | --tw-shadow-color: #c7d2fe; |
| shadow-indigo-300 | --tw-shadow-color: #a5b4fc; |
| shadow-indigo-400 | --tw-shadow-color: #818cf8; |
| shadow-indigo-500 | --tw-shadow-color: #6366f1; |
| shadow-indigo-600 | --tw-shadow-color: #4f46e5; |
| shadow-indigo-700 | --tw-shadow-color: #4338ca; |
| shadow-indigo-800 | --tw-shadow-color: #3730a3; |
| shadow-indigo-900 | --tw-shadow-color: #312e81; |
| shadow-indigo-950 | --tw-shadow-color: #1e1b4b; |
| shadow-violet-50 | --tw-shadow-color: #f5f3ff; |
| shadow-violet-100 | --tw-shadow-color: #ede9fe; |
| shadow-violet-200 | --tw-shadow-color: #ddd6fe; |
| shadow-violet-300 | --tw-shadow-color: #c4b5fd; |
| shadow-violet-400 | --tw-shadow-color: #a78bfa; |
| shadow-violet-500 | --tw-shadow-color: #8b5cf6; |
| shadow-violet-600 | --tw-shadow-color: #7c3aed; |
| shadow-violet-700 | --tw-shadow-color: #6d28d9; |
| shadow-violet-800 | --tw-shadow-color: #5b21b6; |
| shadow-violet-900 | --tw-shadow-color: #4c1d95; |
| shadow-violet-950 | --tw-shadow-color: #2e1065; |
| shadow-purple-50 | --tw-shadow-color: #faf5ff; |
| shadow-purple-100 | --tw-shadow-color: #f3e8ff; |
| shadow-purple-200 | --tw-shadow-color: #e9d5ff; |
| shadow-purple-300 | --tw-shadow-color: #d8b4fe; |
| shadow-purple-400 | --tw-shadow-color: #c084fc; |
| shadow-purple-500 | --tw-shadow-color: #a855f7; |
| shadow-purple-600 | --tw-shadow-color: #9333ea; |
| shadow-purple-700 | --tw-shadow-color: #7e22ce; |
| shadow-purple-800 | --tw-shadow-color: #6b21a8; |
| shadow-purple-900 | --tw-shadow-color: #581c87; |
| shadow-purple-950 | --tw-shadow-color: #3b0764; |
| shadow-fuchsia-50 | --tw-shadow-color: #fdf4ff; |
| shadow-fuchsia-100 | --tw-shadow-color: #fae8ff; |
| shadow-fuchsia-200 | --tw-shadow-color: #f5d0fe; |
| shadow-fuchsia-300 | --tw-shadow-color: #f0abfc; |
| shadow-fuchsia-400 | --tw-shadow-color: #e879f9; |
| shadow-fuchsia-500 | --tw-shadow-color: #d946ef; |
| shadow-fuchsia-600 | --tw-shadow-color: #c026d3; |
| shadow-fuchsia-700 | --tw-shadow-color: #a21caf; |
| shadow-fuchsia-800 | --tw-shadow-color: #86198f; |
| shadow-fuchsia-900 | --tw-shadow-color: #701a75; |
| shadow-fuchsia-950 | --tw-shadow-color: #4a044e; |
| shadow-pink-50 | --tw-shadow-color: #fdf2f8; |
| shadow-pink-100 | --tw-shadow-color: #fce7f3; |
| shadow-pink-200 | --tw-shadow-color: #fbcfe8; |
| shadow-pink-300 | --tw-shadow-color: #f9a8d4; |
| shadow-pink-400 | --tw-shadow-color: #f472b6; |
| shadow-pink-500 | --tw-shadow-color: #ec4899; |
| shadow-pink-600 | --tw-shadow-color: #db2777; |
| shadow-pink-700 | --tw-shadow-color: #be185d; |
| shadow-pink-800 | --tw-shadow-color: #9d174d; |
| shadow-pink-900 | --tw-shadow-color: #831843; |
| shadow-pink-950 | --tw-shadow-color: #500724; |
| shadow-rose-50 | --tw-shadow-color: #fff1f2; |
| shadow-rose-100 | --tw-shadow-color: #ffe4e6; |
| shadow-rose-200 | --tw-shadow-color: #fecdd3; |
| shadow-rose-300 | --tw-shadow-color: #fda4af; |
| shadow-rose-400 | --tw-shadow-color: #fb7185; |
| shadow-rose-500 | --tw-shadow-color: #f43f5e; |
| shadow-rose-600 | --tw-shadow-color: #e11d48; |
| shadow-rose-700 | --tw-shadow-color: #be123c; |
| shadow-rose-800 | --tw-shadow-color: #9f1239; |
| shadow-rose-900 | --tw-shadow-color: #881337; |
| shadow-rose-950 | --tw-shadow-color: #4c0519; |
不透明度
| 类 | 对应的 CSS |
|---|---|
| opacity-0 | opacity: 0; |
| opacity-5 | opacity: 0.05; |
| opacity-10 | opacity: 0.1; |
| opacity-15 | opacity: 0.15; |
| opacity-20 | opacity: 0.2; |
| opacity-25 | opacity: 0.25; |
| opacity-30 | opacity: 0.3; |
| opacity-35 | opacity: 0.35; |
| opacity-40 | opacity: 0.4; |
| opacity-45 | opacity: 0.45; |
| opacity-50 | opacity: 0.5; |
| opacity-55 | opacity: 0.55; |
| opacity-60 | opacity: 0.6; |
| opacity-65 | opacity: 0.65; |
| opacity-70 | opacity: 0.7; |
| opacity-75 | opacity: 0.75; |
| opacity-80 | opacity: 0.8; |
| opacity-85 | opacity: 0.85; |
| opacity-90 | opacity: 0.9; |
| opacity-95 | opacity: 0.95; |
| opacity-100 | opacity: 1; |
滤镜 - 模糊
| Class | 对应的 CSS |
|---|---|
| blur-none | filter: blur(0); |
| blur-sm | filter: blur(4px); |
| blur | filter: blur(8px); |
| blur-md | filter: blur(12px); |
| blur-lg | filter: blur(16px); |
| blur-xl | filter: blur(24px); |
| blur-2xl | filter: blur(40px); |
| blur-3xl | filter: blur(64px); |
滤镜 - 明亮
| Class | 对应的 CSS |
|---|---|
| brightness-0 | filter: brightness(0); |
| brightness-50 | filter: brightness(.5); |
| brightness-75 | filter: brightness(.75); |
| brightness-90 | filter: brightness(.9); |
| brightness-95 | filter: brightness(.95); |
| brightness-100 | filter: brightness(1); |
| brightness-105 | filter: brightness(1.05); |
| brightness-110 | filter: brightness(1.1); |
| brightness-125 | filter: brightness(1.25); |
| brightness-150 | filter: brightness(1.5); |
| brightness-200 | filter: brightness(2); |
滤镜 - 反转颜色
| Class | 对应的 CSS |
|---|---|
| invert-0 | filter: invert(0); |
| invert | filter: invert(100%); |
背景滤镜 - 背景模糊
| Class | 对应的 CSS |
|---|---|
| backdrop-blur-none | backdrop-filter: blur(0); |
| backdrop-blur-sm | backdrop-filter: blur(4px); |
| backdrop-blur | backdrop-filter: blur(8px); |
| backdrop-blur-md | backdrop-filter: blur(12px); |
| backdrop-blur-lg | backdrop-filter: blur(16px); |
| backdrop-blur-xl | backdrop-filter: blur(24px); |
| backdrop-blur-2xl | backdrop-filter: blur(40px); |
| backdrop-blur-3xl | backdrop-filter: blur(64px); |
动画 - 变换属性
| Class | 对应的 CSS |
|---|---|
| transition-none | transition-property: none; |
| transition-all | transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
| transition | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
| transition-colors | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
| transition-opacity | transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
| transition-shadow | transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
| transition-transform | transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; |
动画 - 持续时间
| Class | 对应的 CSS |
|---|---|
| duration-0 | transition-duration: 0s; |
| duration-75 | transition-duration: 75ms; |
| duration-100 | transition-duration: 100ms; |
| duration-150 | transition-duration: 150ms; |
| duration-200 | transition-duration: 200ms; |
| duration-300 | transition-duration: 300ms; |
| duration-500 | transition-duration: 500ms; |
| duration-700 | transition-duration: 700ms; |
| duration-1000 | transition-duration: 1000ms; |
动画 - 动画类型
| Class | 对应的 CSS |
|---|---|
| ease-linear | transition-timing-function: linear; |
| ease-in | transition-timing-function: cubic-bezier(0.4, 0, 1, 1); |
| ease-out | transition-timing-function: cubic-bezier(0, 0, 0.2, 1); |
| ease-in-out | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
动画 - 延迟
| Class | 对应的 CSS |
|---|---|
| delay-0 | transition-delay: 0s; |
| delay-75 | transition-delay: 75ms; |
| delay-100 | transition-delay: 100ms; |
| delay-150 | transition-delay: 150ms; |
| delay-200 | transition-delay: 200ms; |
| delay-300 | transition-delay: 300ms; |
| delay-500 | transition-delay: 500ms; |
| delay-700 | transition-delay: 700ms; |
| delay-1000 | transition-delay: 1000ms; |
变换 - 缩放
| Class | 对应的 CSS |
|---|---|
| scale-0 | transform: scale(0); |
| scale-x-0 | transform: scaleX(0); |
| scale-y-0 | transform: scaleY(0); |
| scale-50 | transform: scale(.5); |
| scale-x-50 | transform: scaleX(.5); |
| scale-y-50 | transform: scaleY(.5); |
| scale-75 | transform: scale(.75); |
| scale-x-75 | transform: scaleX(.75); |
| scale-y-75 | transform: scaleY(.75); |
| scale-90 | transform: scale(.9); |
| scale-x-90 | transform: scaleX(.9); |
| scale-y-90 | transform: scaleY(.9); |
| scale-95 | transform: scale(.95); |
| scale-x-95 | transform: scaleX(.95); |
| scale-y-95 | transform: scaleY(.95); |
| scale-100 | transform: scale(1); |
| scale-x-100 | transform: scaleX(1); |
| scale-y-100 | transform: scaleY(1); |
| scale-105 | transform: scale(1.05); |
| scale-x-105 | transform: scaleX(1.05); |
| scale-y-105 | transform: scaleY(1.05); |
| scale-110 | transform: scale(1.1); |
| scale-x-110 | transform: scaleX(1.1); |
| scale-y-110 | transform: scaleY(1.1); |
| scale-125 | transform: scale(1.25); |
| scale-x-125 | transform: scaleX(1.25); |
| scale-y-125 | transform: scaleY(1.25); |
| scale-150 | transform: scale(1.5); |
| scale-x-150 | transform: scaleX(1.5); |
| scale-y-150 | transform: scaleY(1.5); |
变换 - 旋转
| Class | 对应的 CSS |
|---|---|
| rotate-0 | transform: rotate(0deg); |
| rotate-1 | transform: rotate(1deg); |
| rotate-2 | transform: rotate(2deg); |
| rotate-3 | transform: rotate(3deg); |
| rotate-6 | transform: rotate(6deg); |
| rotate-12 | transform: rotate(12deg); |
| rotate-45 | transform: rotate(45deg); |
| rotate-90 | transform: rotate(90deg); |
| rotate-180 | transform: rotate(180deg); |
变换 - 移动
| Class | 对应的 CSS |
|---|---|
| translate-x-0 | transform: translateX(0px); |
| translate-y-0 | transform: translateY(0px); |
| translate-x-px | transform: translateX(1px); |
| translate-y-px | transform: translateY(1px); |
| translate-x-0.5 | transform: translateX(0.125rem); |
| translate-y-0.5 | transform: translateY(0.125rem); |
| translate-x-1 | transform: translateX(0.25rem); |
| translate-y-1 | transform: translateY(0.25rem); |
| translate-x-1.5 | transform: translateX(0.375rem); |
| translate-y-1.5 | transform: translateY(0.375rem); |
| translate-x-2 | transform: translateX(0.5rem); |
| translate-y-2 | transform: translateY(0.5rem); |
| translate-x-2.5 | transform: translateX(0.625rem); |
| translate-y-2.5 | transform: translateY(0.625rem); |
| translate-x-3 | transform: translateX(0.75rem); |
| translate-y-3 | transform: translateY(0.75rem); |
| translate-x-3.5 | transform: translateX(0.875rem); |
| translate-y-3.5 | transform: translateY(0.875rem); |
| translate-x-4 | transform: translateX(1rem); |
| translate-y-4 | transform: translateY(1rem); |
| translate-x-5 | transform: translateX(1.25rem); |
| translate-y-5 | transform: translateY(1.25rem); |
| translate-x-6 | transform: translateX(1.5rem); |
| translate-y-6 | transform: translateY(1.5rem); |
| translate-x-7 | transform: translateX(1.75rem); |
| translate-y-7 | transform: translateY(1.75rem); |
| translate-x-8 | transform: translateX(2rem); |
| translate-y-8 | transform: translateY(2rem); |
| translate-x-9 | transform: translateX(2.25rem); |
| translate-y-9 | transform: translateY(2.25rem); |
| translate-x-10 | transform: translateX(2.5rem); |
| translate-y-10 | transform: translateY(2.5rem); |
| translate-x-11 | transform: translateX(2.75rem); |
| translate-y-11 | transform: translateY(2.75rem); |
| translate-x-12 | transform: translateX(3rem); |
| translate-y-12 | transform: translateY(3rem); |
| translate-x-14 | transform: translateX(3.5rem); |
| translate-y-14 | transform: translateY(3.5rem); |
| translate-x-16 | transform: translateX(4rem); |
| translate-y-16 | transform: translateY(4rem); |
| translate-x-20 | transform: translateX(5rem); |
| translate-y-20 | transform: translateY(5rem); |
| translate-x-24 | transform: translateX(6rem); |
| translate-y-24 | transform: translateY(6rem); |
| translate-x-28 | transform: translateX(7rem); |
| translate-y-28 | transform: translateY(7rem); |
| translate-x-32 | transform: translateX(8rem); |
| translate-y-32 | transform: translateY(8rem); |
| translate-x-36 | transform: translateX(9rem); |
| translate-y-36 | transform: translateY(9rem); |
| translate-x-40 | transform: translateX(10rem); |
| translate-y-40 | transform: translateY(10rem); |
| translate-x-44 | transform: translateX(11rem); |
| translate-y-44 | transform: translateY(11rem); |
| translate-x-48 | transform: translateX(12rem); |
| translate-y-48 | transform: translateY(12rem); |
| translate-x-52 | transform: translateX(13rem); |
| translate-y-52 | transform: translateY(13rem); |
| translate-x-56 | transform: translateX(14rem); |
| translate-y-56 | transform: translateY(14rem); |
| translate-x-60 | transform: translateX(15rem); |
| translate-y-60 | transform: translateY(15rem); |
| translate-x-64 | transform: translateX(16rem); |
| translate-y-64 | transform: translateY(16rem); |
| translate-x-72 | transform: translateX(18rem); |
| translate-y-72 | transform: translateY(18rem); |
| translate-x-80 | transform: translateX(20rem); |
| translate-y-80 | transform: translateY(20rem); |
| translate-x-96 | transform: translateX(24rem); |
| translate-y-96 | transform: translateY(24rem); |
| translate-x-1/2 | transform: translateX(50%); |
| translate-x-1/3 | transform: translateX(33.333333%); |
| translate-x-2/3 | transform: translateX(66.666667%); |
| translate-x-1/4 | transform: translateX(25%); |
| translate-x-2/4 | transform: translateX(50%); |
| translate-x-3/4 | transform: translateX(75%); |
| translate-x-full | transform: translateX(100%); |
| translate-y-1/2 | transform: translateY(50%); |
| translate-y-1/3 | transform: translateY(33.333333%); |
| translate-y-2/3 | transform: translateY(66.666667%); |
| translate-y-1/4 | transform: translateY(25%); |
| translate-y-2/4 | transform: translateY(50%); |
| translate-y-3/4 | transform: translateY(75%); |
| translate-y-full | transform: translateY(100%); |
变换 - 相对位置
| Class | 对应的 CSS |
|---|---|
| origin-center | transform-origin: center; |
| origin-top | transform-origin: top; |
| origin-top-right | transform-origin: top right; |
| origin-right | transform-origin: right; |
| origin-bottom-right | transform-origin: bottom right; |
| origin-bottom | transform-origin: bottom; |
| origin-bottom-left | transform-origin: bottom left; |
| origin-left | transform-origin: left; |
| origin-top-left | transform-origin: top left; |