0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPressのブロックエディタのグラデーションのセットをカスタマイズ

Last updated at Posted at 2020-04-11

グラデーションブロック使いたいけど、カラーセットは使いづらい

WordPressのブロックエディタの初期カラーセット

image.png

かなり個性的なセットですね。

WordPress5.4ではadd_theme_supporteditor-gradient-presetsでカラーセットが変更できるようになったみたいです。

functions.php


add_theme_support(
	'editor-gradient-presets',
	array(
		array(
			'name'     => __('Vivid cyan blue to vivid purple', 'themeLangDomain'),
			'gradient' => 'linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)',
			'slug'     => 'vivid-cyan-blue-to-vivid-purple'
		),
		array(
			'name'     => __('Vivid green cyan to vivid cyan blue', 'themeLangDomain'),
			'gradient' => 'linear-gradient(135deg,rgba(0,208,132,1) 0%,rgba(6,147,227,1) 100%)',
			'slug'     =>  'vivid-green-cyan-to-vivid-cyan-blue',
		),
		array(
			'name'     => __('Light green cyan to vivid green cyan', 'themeLangDomain'),
			'gradient' => 'linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)',
			'slug'     => 'light-green-cyan-to-vivid-green-cyan',
		),
		array(
			'name'     => __('Luminous vivid amber to luminous vivid orange', 'themeLangDomain'),
			'gradient' => 'linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)',
			'slug'     => 'luminous-vivid-amber-to-luminous-vivid-orange',
		),
		array(
			'name'     => __('Luminous vivid orange to vivid red', 'themeLangDomain'),
			'gradient' => 'linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%)',
			'slug'     => 'luminous-vivid-orange-to-vivid-red',
		),
	)
);

nameでホバーした時に注釈がでます。gradientはまんまCSSですね。slugは被らなければOK

変更後

image.png

グラデーションがボタンやカバーで使えるようになった。

image.png

最近はあまりグラデーションをかけないデザイン多めだったのですが、ブラウザ的にCSSブレンドモードも使えそうなので表現の幅が広がりそうですね。

0
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?