이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Dark Mode Block

설명

Dark Mode Block is a simple yet powerful WordPress block plugin that allows you to enable dark mode for your website, enhancing readability and reducing eye strain without altering your website’s colors. Give your users the flexibility to switch between light and dark modes seamlessly.
Designed to be lightweight and efficient the whole frontend script weights less than half of a kb gzipped 😉

Features:
– Toggle dark mode with a user-friendly icon.
– Preserve your website’s color scheme while improving readability in low-light environments.
– Enhanced user experience with reduced eye strain.
– Customizable

Make your website more accessible and user-friendly by offering a dark mode option. With Dark Mode Block, your users can enjoy your content without compromising on aesthetics.

Usage

  1. After activating the plugin, add the “Dark Mode” block to your WordPress page or post editor.
  2. Publish or update your content.

Customization

Unleash your creativity! This block is designed to be fully customizable graphically, and since it’s entirely CSS-based, it’s straightforward for anyone to modify and adapt it according to their own taste or template.

You even have control over how the dark mode is applied! Currently, I’ve applied an invert filter on the background as I don’t know the variables in your template.
However, you have the flexibility to make it even better by setting the text color as the background and vice versa.

Here’s how to do it:

  1. Add the following code to your functions.php file.
  2. Edit the $custom_css in order to fit your preferences

First dequeue the current style in this way:

add_action( 'wp_enqueue_scripts', function () {
    /** dequeue the default dark mode */
    wp_dequeue_style( 'codekraft-dark-mode-style' );
}, 9 );

Then add yours!

add_action( 'wp_head', function () {
    /** @var {string} $custom_css - your custom css for the dark mode */
    $custom_css = "html.dark-mode body {
        --wp--preset--color--background: #232323;
        --wp--preset--color--foreground: #f3f3f3;
    }
    .dark-mode-switch::before {
        width: 1.6rem;
        cursor: pointer;
        display: flex;
        font-size: 1.6rem;
        line-height: 1.6rem;
        content: '🌞'
    }
    .dark-mode .dark-mode-switch::before {
        content: '🌚'
    }";
    echo "<style id='dark-mode-custom'>$custom_css</style>";
}, 20 );

Please support the plugin posting your custom style and a screenshot in the WordPress support forum section!

블록

이 플러그인은 1개의 블록을 제공합니다.

  • Dark Mode Switch Enables the dark mode for your website

설치

  1. Upload the ‘dark-mode-block’ folder to the ‘/wp-content/plugins/’ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.

FAQ

Q: Does this plugin work with all WordPress themes?

A: Dark Mode Block is designed to be compatible with most of FSE WordPress themes. However, some themes may require additional styling adjustments for optimal dark mode functionality.

후기

2024년 4월 25일
This is a great plugin – something i really looked after for a long time. Unlike most of the other plugins this is simple, small and very easy to integrate into FSE themes as you only have to add a block. Also it’s possible to make customisations to the dark mode to fit the need of the own site. This plugin needs more attention while it meets a very important feature with easy. Great work!
2024년 3월 6일 답글 1개
This little plugin is really great. Installing was easy. The customization is done completely in CSS code, which may seem a bit intimidating at first. But heading over to the plugin support forum, the developers at codekraft were super-helpful and all my issues were answered and fixed shortly. And I learned a few things I can and did use in other places of my WordPress-Site. I am very happy that this is not one of those bloated, brainwashed premium-nagwares, as unfortunately many WP-plugins are.
2024년 2월 29일
So cool. Been waiting for something like this. Thanks for making it. You just made my day.
모든 4 평가 읽기

기여자 & 개발자

“Dark Mode Block”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Dark Mode Block”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.1.0

  • Initial release