0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -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:
Rish 2021-03-09 18:05:48 +05:30
parent cbbf5b4ad4
commit 6a512a50f9

View file

@ -19,7 +19,7 @@ function restrictedCta(options) {
options = options || {};
options.data = options.data || {};
_.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);
return templates.execute('content-cta', this, {data});