0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

tailwindcss 色の定義をしたらデフォルトの色が使えなくなった

Posted at

やりたいこと

Laravelでtailwindを使用。
色の定義をしたら

tailwind.config.js
export default = {
  theme: {
    colors: {
       'blue': '#003D7E'
    },
  },
};

すると
下記のようなデフォルトの色が使えなくなった。

<button class="bg-sky-500 hover:bg-sky-700 ...">
  Save changes
</button>

解決

theme.extends.colorsを使用

tailwind.config.js
export default = {
  theme: {
    extend: {
      colors: {
        'blue': '#003D7E'
      },
    },
  },
};
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?