KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
tailwindcss-named-colors
★ 11
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
STM32_projects
:
A collection of projects and libraries for STM32 based micro-controllers family.
codemods
:
Codemods based on LibCST
farmbot-genesis
:
FarmBot Genesis hardware documentation
Wemakeli
:
一个基于PHP的弹幕视频网站 A danmaku video website build with php
filelist-app
:
Filelist API | React Native App
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tailwindcss-named-colors
?
Download (.md)
# tailwindcss-named-colors This plugin adds all [140 named CSS colors](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value) to your TailwindCSS project. Currently the plugin enables you to set the background or text color using any of the named colors. ## Install ``` npm install @adoxyz/tailwindcss-named-colors ``` In your `tailwind.config.js` file, load the plugin: ``` module.exports = { purge: false, theme: {}, variants: {}, plugins: [ require('@adoxyz/tailwindcss-named-colors'), ], } ``` ## Use: Backgrounds: ``` <div class="bg-salmon"> </div> ``` Text: ``` <h1 class="text-tomato">Hello</h1> ```