Skip to content

Commit 205495b

Browse files
committed
Updates theme colors for improved dark mode consistency
Aligns background and hover colors across input fields, modals, GIS editor, tables, and print styles with a darker palette to enhance readability and maintain visual consistency in the dark theme.
1 parent 4089eef commit 205495b

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

pmadarkhomme/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A dark mode variant of the default phpMyAdmin theme (pmahomme), featuring a comf
55
## Theme Details
66

77
- **Name**: pmadarkhomme
8-
- **Version**: 1.0
8+
- **Version**: 5.0
99
- **Based On**: pmahomme (Default phpMyAdmin Theme)
1010
- **Supports**: phpMyAdmin 5.0, 5.1, 5.2
1111

pmadarkhomme/css/theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pmadarkhomme/css/theme.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pmadarkhomme/scss/_common.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,23 +150,23 @@ input {
150150
&:hover,
151151
&:focus {
152152
border: 1px solid #7c7c7c;
153-
background: #fff;
153+
background: #3a3a3a;
154154
}
155155
}
156156

157157
&[type=password] {
158158
&:hover,
159159
&:focus {
160160
border: 1px solid #7c7c7c;
161-
background: #fff;
161+
background: #3a3a3a;
162162
}
163163
}
164164

165165
&[type=number] {
166166
&:hover,
167167
&:focus {
168168
border: 1px solid #7c7c7c;
169-
background: #fff;
169+
background: #3a3a3a;
170170
}
171171
}
172172

pmadarkhomme/scss/_gis.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ a.close_gis_editor {
2222
}
2323

2424
#gis_data_editor {
25-
background: #d0dce0;
25+
background: #2a2a2a;
2626
padding: 15px;
2727
min-height: 500px;
2828

pmadarkhomme/scss/_modal.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.modal-header {
2-
background-image: linear-gradient(#f8f8f8, #d8d8d8);
2+
background-image: linear-gradient(#2a2a2a, #3a3a3a);
33
}

pmadarkhomme/scss/_print.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
.sqlOuter {
6868
color: black;
69-
background-color: #000;
69+
background-color: #2a2a2a;
7070
}
7171

7272
// For hiding 'Open a New phpMyAdmin Window' button

pmadarkhomme/scss/_tables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
.table-hover {
3232
tbody tr {
3333
&:hover {
34-
background: linear-gradient(#ced6df, #b6c6d7);
34+
background: linear-gradient(#2a2a2a, #3a3a3a);
3535
}
3636
}
3737
}

0 commit comments

Comments
 (0)