version 1.13.6 : improve search and sheetleftbar

This commit is contained in:
gitfromwildan
2025-06-01 20:49:57 +07:00
parent d967120677
commit 3c18bfa457
10 changed files with 31 additions and 16 deletions

View File

@@ -8,6 +8,18 @@ date: 24-05-2025
This changelog contains a list of all the changes made to the DocuBook template. It will be updated with each new release and will include information about new features, bug fixes, and other improvements.
</Note>
<div className="sr-only">
### v 1.13.6
</div>
<Release version="1.13.6" date="2025-06-01" title="Improve sheet leftbar and search icon">
<Changes type="improved">
- Improve sheet leftbar and search icon
- color scheme for sheet leftbar
- color scheme for search icon
</Changes>
</Release>
<div className="sr-only">
### v 1.13.5
</div>

View File

@@ -6,7 +6,7 @@ date: 29-11-2024
## app
This folder contains the main application code for Next.js, managing layouts, routing, and specific content pages. It is organized to support both the `docs` and `blog` sections, with dedicated pages and layouts for each section.
This folder contains the main application code for Next.js, managing layouts, routing, and specific content pages. It is organized to support both the `docs` sections, with dedicated pages and layouts for each section.
```
app // Main Next.js application folder

View File

@@ -6,8 +6,6 @@ date: 2025-05-30
## Styles
DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences.
<Note type="note" title="note">
You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files.
</Note>

View File

@@ -5,9 +5,6 @@ date: 2025-05-20
---
## Styles
DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences.
<Note type="note" title="note">
You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files.
</Note>

View File

@@ -5,9 +5,6 @@ date: 2025-05-30
---
## Styles
DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences.
<Note type="note" title="note">
You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files.
</Note>

View File

@@ -7,6 +7,14 @@ date: 2025-05-31
## Introduction
This document explains how to create and implement custom color themes using AI with LLMS context. The context includes a consistent color palette for both light and dark modes, along with syntax highlighting colors for code.
## File Structure
<Files>
<Folder name="styles">
<File name="globals.css" />
<File name="syntax.css" />
</Folder>
</Files>
## Generate New Theme
<Stepper>
@@ -24,11 +32,14 @@ This document explains how to create and implement custom color themes using AI
```markdown
Create a new color theme based on the provided context with the following requirements:
1. Different primary color `#2281E3` - changes to your brand color
1. Different primary color #2281E3
2. Maintain good contrast for accessibility
3. Include variants for both light and dark modes
4. Keep the same structure as the provided context
```
<Note type="danger" title="Colors example">
changes the value of Hex color `#2281E3` into your brand colors.
</Note>
</StepperItem>
</Stepper>