Wabi-Sabi

Wabi-SabiPotteryEarthyNatural
#D7C4BB
#B7A69E
#8C7D70
#6A5D4D
#494438
#D7C4BB
#B7A69E
#8C7D70
#6A5D4D
#494438

このパレットを使用する

CSS変数

:root {
  --color-1: #D7C4BB;
  --color-2: #B7A69E;
  --color-3: #8C7D70;
  --color-4: #6A5D4D;
  --color-5: #494438;
}

Tailwind CSS

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        palette: {
      '1': '#D7C4BB',
      '2': '#B7A69E',
      '3': '#8C7D70',
      '4': '#6A5D4D',
      '5': '#494438',
        }
      }
    }
  }
}