habamax / forget-me-not-theme

A tribute to obsoleted Emacs light-blue theme
GNU General Public License v3.0
1 stars 2 forks source link

forget-me-not sandcastle and wildcharm suffer the same mistake in eww :box #2

Open batalooppak opened 2 hours ago

batalooppak commented 2 hours ago

Hi. Thanks for making these themes. they have a small mistake in the :box properties of eww.

Fix :foreground to :color in :box

:box accepts :color instead of :foreground

1 file changed, 1 insertion(+), 1 deletion(-)
forget-me-not-theme.el | 2 +-

modified   forget-me-not-theme.el
@@ -1115,7 +1115,7 @@

    ;; eww
    `(eww-form-text
-     ((t (:inherit widget-field :box (:foreground ,grey)))))
+     ((t (:inherit widget-field :box (:color ,grey)))))
    `(eww-form-textarea
      ((t (:inherit widget-field))))
    `(eww-form-submit

I tried to make a pull request, but I'm too noob for this.

habamax commented 2 hours ago

thx, will have a look into this