bg-black--tw-bg-opacity: 1; background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); bg-white--tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); bg-gray-50--tw-bg-opacity: 1; background-color: rgba(249, 250, 251, var(--tw-bg-opacity)...
You cancustomize your color paletteby editing thetheme.colorsvariable in yourtailwind.config.jsfile, or customize just your background colors using thetheme.backgroundColorsection of your Tailwind config. // tailwind.config.jsmodule.exports={theme:{backgroundColor:theme=>({-...theme('colors'),+...
首先,让我们从 Tailwind CSS 的基础配置开始: // tailwind.config.js module.exports = { darkMode: 'class', // 或者使用 'media' theme: { extend: { colors: { // 自定义深色模式颜色 dark: { 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db', 400: '#9ca3af',...
/* styles.css */ .bg-primary { @apply bg-tailwind-primary; } 但是,为了更高效地使用Tailwind CSS,我们通常直接在tailwind.config.js中定义自定义实用类,如下所示: // tailwind.config.js module.exports = { theme: { extend: { colors: { 'primary': '#1abc9c', // 自定义颜色 }, backgroundCo...
首先,让我们从 Tailwind CSS 的基础配置开始: // tailwind.config.jsmodule.exports={darkMode:'class',// 或者使用 'media'theme:{extend:{colors:{// 自定义深色模式颜色dark:{50:'#f9fafb',100:'#f3f4f6',200:'#e5e7eb',300:'#d1d5db',400:'#9ca3af',500:'#6b7280',600:'#4b5563',700:...
Tailwind CSS allows you to apply background colors responsively at different breakpoints. To use responsive Tailwind background color classes, you can append the breakpoint prefix to the background color class. For example,md:bg-green-500applies the green background color starting from the medium...
一文掌握 Tailwind CSS 基础工欲善其事,必先利其器先推荐一些好用的工具: TailWind CSS 代码提示功能 vscode 插件:Tailwind CSS IntelliSense Tailwind CSS 速查网站:https://tailwind.muzhifan.top/注:本文假定你已经有一定的 CSS 基础1 宽高1.使用预定义类名...
selection 是一个CSS伪元素选择器,它可以用来给用户选中的文本添加样式 first-line 首行 first-letter 首字 backdrop ::backdrop在任何处于全屏模式的元素下的即刻渲染的盒子(并且在所有其他在堆中的层级更低的元素之上) 媒体查询 使用方法: 在实用程序类前添加sm:bg-sky-700 ...
您需要导入"tailwindcss/colors",然后使用colors.something
您需要导入"tailwindcss/colors",然后使用colors.something