diff --git a/files/bulma.css b/files/bulma.css
index 940655e..d8e2c3e 100644
--- a/files/bulma.css
+++ b/files/bulma.css
@@ -7851,18 +7851,6 @@ a.navbar-item {
cursor: pointer
}
-.navbar-link.is-active,
-.navbar-link:focus,
-.navbar-link:focus-within,
-.navbar-link:hover,
-a.navbar-item.is-active,
-a.navbar-item:focus,
-a.navbar-item:focus-within,
-a.navbar-item:hover {
- background-color: #fafafa;
- color: #3273dc
-}
-
.navbar-item {
display: block;
flex-grow: 0;
diff --git a/functions.php b/functions.php
index 55782ca..455e55a 100644
--- a/functions.php
+++ b/functions.php
@@ -23,6 +23,18 @@ add_action( 'after_setup_theme', 'fachwerksauna_setup' );
function theme_customize_register( $wp_customize ) {
+ $wp_customize->add_setting( 'theme_color', array(
+ 'default' => '#ed9b40',
+ 'transport' => 'refresh',
+ ) );
+
+ $wp_customize->add_control( new WP_Customize_Color_Control(
+ $wp_customize, 'theme_color', array(
+ 'section' => 'colors',
+ 'label' => esc_html__( 'Theme color', 'theme' ),
+ ) ) );
+
+
$wp_customize->add_setting( 'fachwerksauna_footer-text', array(
'default' => '',
'type' => 'option',
@@ -42,4 +54,18 @@ function theme_customize_register( $wp_customize ) {
}
-add_action( 'customize_register', 'theme_customize_register' );
\ No newline at end of file
+add_action( 'customize_register', 'theme_customize_register' );
+
+function kit_customize_css()
+{
+ $theme_color = get_theme_mod('theme_color', '#ed9b40');
+ ?>
+
+
+ src="">
diff --git a/style.css b/style.css
index c933325..f75894d 100644
--- a/style.css
+++ b/style.css
@@ -121,7 +121,7 @@ a.no-underline {
}
.button {
- background-color: #ED9B40;
+ background-color: var(--themeColor);
text-shadow: none;
border: none;
border-radius: 8px;
@@ -133,7 +133,7 @@ a.no-underline {
}
.rentButton {
- background-color: #ED9B40;
+ background-color: var(--themeColor);
border-radius: 10px;
padding: 10px 20px !important;
margin-left: 10px;
@@ -148,7 +148,9 @@ a.no-underline {
}
.rentButton:hover {
- background-color: #FFAA48 !important;
+ background-color: var(--themeColor) !important;
+ /* box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.6); */
+ filter: brightness(120%);
}
.button[disabled] {
@@ -278,7 +280,7 @@ html.has-navbar-fixed-top {
}
.mainNavbar a.navbar-item:hover {
- color: #C76E08;
+ color: var(--themeColor);
}
.mainNavbar .language-selector .icon {