This plugin adds the programming language colours to the Tailwind colour palette.
yarn add Astrotomic/tailwind-programming-language-colors#main
tailwind.config.js
module.exports = {
plugins: [
require('tailwind-programming-language-colors'),
],
};
<div class="space-y-6">
<button class="bg-lang-html px-4 py-2 rounded text-white">
HTML
</button>
<button class="bg-lang-css px-4 py-2 rounded text-white">
CSS
</button>
<button class="bg-lang-php px-4 py-2 rounded text-white">
PHP
</button>
<button class="bg-lang-visual-basic-net px-4 py-2 rounded text-white">
VB.NET
</button>
<button class="bg-lang-sas px-4 py-2 rounded text-white">
SAS
</button>
<button class="bg-lang-haskell px-4 py-2 rounded text-white">
Haskell
</button>
</div>
Will result in something similar to this: