Skip to content

Commit

Permalink
Simplify color palette a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed May 11, 2019
1 parent e52ee40 commit c2b7b4d
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions inc/classes/Theme.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,14 @@ public function setup() {
'editor-color-palette',
[
[
'name' => esc_attr__( 'Pale Pink', 'gridd' ),
'slug' => 'pale-pink',
'color' => '#f78da7',
'name' => esc_attr__( 'White', 'gridd' ),
'slug' => 'theme-white',
'color' => '#fff',
],
[
'name' => esc_attr__( 'Black', 'gridd' ),
'slug' => 'theme-black',
'color' => '#000',
],
[
'name' => esc_attr__( 'Vivid Red', 'gridd' ),
Expand Down Expand Up @@ -302,21 +307,11 @@ public function setup() {
'slug' => 'pale-cyan-blue',
'color' => '#8ed1fc',
],
[
'name' => esc_attr__( 'cyan', 'gridd' ),
'slug' => 'theme-cyan',
'color' => '#26C6DA',
],
[
'name' => esc_html__( 'Vivid Cyan Blue', 'gridd' ),
'slug' => 'vivid-cyan-blue',
'color' => '#0693e3',
],
[
'name' => esc_attr__( 'White', 'gridd' ),
'slug' => 'theme-white',
'color' => '#fff',
],
[
'name' => esc_attr__( 'Very Light Gray', 'gridd' ),
'slug' => 'very-light-gray',
Expand All @@ -337,11 +332,6 @@ public function setup() {
'slug' => 'very-dark-gray',
'color' => '#313131',
],
[
'name' => esc_attr__( 'Black', 'gridd' ),
'slug' => 'theme-black',
'color' => '#000',
],
]
);

Expand Down

0 comments on commit c2b7b4d

Please sign in to comment.