Skip to content

Commit f07c6ad

Browse files
authored
Refine colors for Jenkins 2.513 (#591)
1 parent 72d190c commit f07c6ad

File tree

8 files changed

+95
-368
lines changed

8 files changed

+95
-368
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
target/
22
work/
33
*.iml
4-
.idea/
4+
.idea/*
5+
!.idea/icon.svg
56
node/
67
node_modules/
78
src/main/webapp/theme.css*

.idea/icon.svg

Lines changed: 23 additions & 0 deletions
Loading

README.md

Lines changed: 7 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,33 @@
1-
# Dark Theme for Jenkins
1+
# Dark Theme Plugin
22

33
[![Build Status](https://ci.jenkins.io/job/Plugins/job/dark-theme-plugin/job/master/badge/icon)](https://ci.jenkins.io/job/Plugins/job/dark-theme-plugin/job/master/)
44
[![Gitter](https://badges.gitter.im/jenkinsci/ux-sig.svg)](https://gitter.im/jenkinsci/ux-sig?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
55
[![Changelog](https://img.shields.io/github/release/jenkinsci/dark-theme.svg?label=changelog)](https://github.com/jenkinsci/dark-theme/releases/)
66
[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/dark-theme.svg)](https://plugins.jenkins.io/dark-theme)
77
[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/dark-theme.svg?color=blue)](https://plugins.jenkins.io/dark-theme)
88

9-
This repository contains a dark theme for Jenkins.
9+
![preview.png](docs/images/preview.png)
1010

11-
## Usage
11+
## Introduction
1212

13-
### Installing via Jenkins update center
13+
This plugin provides the Dark theme for Jenkins.
1414

15-
Search for 'Dark theme' in your Jenkins update center and install it.
15+
### Usage
1616

17-
Then go to "Manage Jenkins" and click "Appearance", search for 'Themes' and select 'Dark (System)'
17+
Search for 'Dark theme' in your Jenkins update center and install it.
1818

19-
or with the [configuration-as-code](https://github.com/jenkinsci/configuration-as-code-plugin) plugin:
19+
Then go to "Manage Jenkins" and click "Appearance", search for 'Themes' and select 'Dark (System)' or with the [configuration-as-code](https://github.com/jenkinsci/configuration-as-code-plugin) plugin:
2020

21-
From Jenkins 2.421:
2221
```yaml
2322
appearance:
2423
themeManager:
2524
disableUserThemes: true
2625
theme: "darkSystem" # use 'dark' for forcing the dark theme regardless of OS settings
2726
```
2827
29-
Previously:
30-
```yaml
31-
unclassified:
32-
themeManager:
33-
disableUserThemes: true
34-
theme: "darkSystem" # use 'dark' for forcing the dark theme regardless of OS settings
35-
```
36-
3728
Users can configure the theme from their user profile page, see the [theme-manager documentation](https://github.com/jenkinsci/theme-manager-plugin#configuring-the-plugin),
3829
for more information.
3930
40-
## Screenshots
41-
42-
Main screen:
43-
44-
![Main screen](./docs/images/screenshot_main.png)
45-
46-
Build console:
47-
48-
![Build console log](./docs/images/screenshot_build_console.PNG)
49-
50-
## Browser compatibility
51-
52-
The theme should be compatible with all modern browsers.
53-
54-
No version of IE will be supported.
55-
5631
## References
5732
5833
* Introduction and first demo at the Jenkins UI/UX hackfest:

docs/images/preview.png

2.48 MB
Loading
-61.3 KB
Binary file not shown.

docs/images/screenshot_main.png

-67.2 KB
Binary file not shown.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
<gitHubRepo>jenkinsci/dark-theme-plugin</gitHubRepo>
3232
<changelist>9999999-SNAPSHOT</changelist>
3333
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
34-
<jenkins.baseline>2.479</jenkins.baseline>
35-
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
34+
<jenkins.baseline>2.504</jenkins.baseline>
35+
<jenkins.version>2.513</jenkins.version>
3636
<tagNameFormat>@{project.version}</tagNameFormat>
3737
<useBeta>true</useBeta>
3838
<node.version>18.20.8</node.version>

0 commit comments

Comments
 (0)