From 2f4144f01d6573fe8fe4112198d48a3246b8b066 Mon Sep 17 00:00:00 2001 From: utchoang Date: Tue, 22 Sep 2020 07:58:01 +0700 Subject: [PATCH] add custom option (background/text) for link, menu --- source/installguide/primate.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/installguide/primate.rst b/source/installguide/primate.rst index d7bcbe42e9..2c8db36d57 100644 --- a/source/installguide/primate.rst +++ b/source/installguide/primate.rst @@ -166,8 +166,13 @@ Customization of themes is also possible, such as, modifying banner width, gener .. parsed-literal:: "theme": { + "@logo-background-color": "#ffffff", + "@navigation-background-color": "#ffffff", + "@navigation-text-color": "rgba(0, 0, 0, 0.65)", "@primary-color": "#1890ff", "@link-color": "#1890ff", + "@link-hover-color": "#40a9ff", + "@loading-color": "#1890ff", "@processing-color": "#1890ff", "@success-color": "#52c41a", "@warning-color": "#faad14", @@ -190,7 +195,13 @@ Customization of themes is also possible, such as, modifying banner width, gener where, +- @logo-background-color changes the logo background color. +- @navigation-background-color changes the navigation menu background color. +- @navigation-text-color changes the navigation text color. - @primary-color: changes the major background color of the page (background button, icon hover, etc). +- @link-color changes the link color. +- @link-hover-color changes the link hover color. +- @loading-color changes the message loading color and page loading bar at the top page. - @success-color: changes success state color. - @processing-color: changes processing state color. Exp: progress status. - @warning-color: changes warning state color.