mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Updated default accent color for content cta
refs https://github.com/TryGhost/Team/issues/535 Updates default accent color to be consistent everywhere with expected value as #15171A
This commit is contained in:
parent
cbbf5b4ad4
commit
6a512a50f9
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ function restrictedCta(options) {
|
||||||
options = options || {};
|
options = options || {};
|
||||||
options.data = options.data || {};
|
options.data = options.data || {};
|
||||||
_.merge(this, {
|
_.merge(this, {
|
||||||
accentColor: (options.data.site && options.data.site.accent_color) || '#3db0ef'
|
accentColor: (options.data.site && options.data.site.accent_color) || '#15171A'
|
||||||
});
|
});
|
||||||
const data = createFrame(options.data);
|
const data = createFrame(options.data);
|
||||||
return templates.execute('content-cta', this, {data});
|
return templates.execute('content-cta', this, {data});
|
||||||
|
|
Loading…
Add table
Reference in a new issue