我正在尝试通过_theme.less文件更改标准Magento 2空白主题的颜色。 我目前有以下文件结构 / public_html / app / design / frontend / GladiatorFitness / Gladiator
- registration.php
- theme.xml
- web
-- css
--- source
---- _theme.less
---- _typography.less
-- fonts
-- images
在_themes.less中,我添加了以下内容,并且尝试清除缓存和部署资产。似乎没有什么改变。
// Primary button
@button-primary__background: @color-orange-red1;
@button-primary__border: 1px solid @color-orange-red2;
@button-primary__color: @color-white;
@button-primary__hover__background: darken(@color-orange-red1, 5%);
@button-primary__hover__border: 1px solid @color-orange-red2;
@button-primary__hover__color: @color-white;