Skip to content

Commit 18f54f9

Browse files
authored
Merge pull request #450 from technosf/development
2.2 basics
2 parents f9c6dab + d24c273 commit 18f54f9

48 files changed

Lines changed: 3446 additions & 1416 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codex

Whitespace-only changes.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,11 @@ Help is appreciated:
115115

116116
- [technosf](https://github.com/technosf) Current maintainer and rewriter of a swarth of Tuner for V2
117117
- [louis77](https://github.com/louis77) Originator and genius behind Tuner
118-
- [@jrthwlate](https://hosted.weblate.org/user/jrthwlate/) - Estonian translation
118+
- [jrthwlate](https://hosted.weblate.org/user/jrthwlate/) - Estonian translation
119119
- [@yakushabb](https://github.com/yakushabb) for flathub and flatpak config help
120120
- [faleksandar.com](https://faleksandar.com/) for icons and colors
121121
- [@NathanBnm](https://github.com/NathanBnm) - French translation
122+
- [David D.](https://hosted.weblate.org/user/dadu042/) - French translation
122123
- [@DevAlien](https://github.com/DevAlien) - Italian translation
123124
- [@albanobattistella](https://github.com/albanobattistella) - Italian translation
124125
- [@Vistaus](https://github.com/Vistaus) - Dutch translation

data/css/Tuner-system.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
*/
1717
.station-label,
1818
label.station-label {
19-
font-weight: 500;
20-
font-size: 12pt;
19+
font-weight: 600;
20+
font-size: 11.5pt;
2121
letter-spacing: -0.05em;
2222
color: @theme_text_color;
2323
}
@@ -26,7 +26,7 @@ label.station-label {
2626
label.track-info {
2727
/* font-weight: 150; */
2828
font-size: 11pt;
29-
letter-spacing: -0.05em;
29+
letter-spacing: -0.06em;
3030
color: @theme_text_color;
3131
}
3232

data/css/Tuner-theme.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* style.css — adaptive to light/dark */
2+
3+
window {
4+
background-color: @theme_bg_color;
5+
color: @theme_fg_color;
6+
}
7+
8+
entry, textview {
9+
background-color: @theme_base_color;
10+
color: @theme_text_color;
11+
border-color: @theme_mid_color;
12+
}
13+
14+
selection {
15+
background-color: @theme_selected_bg_color;
16+
color: @theme_selected_fg_color;
17+
}
18+
19+
button {
20+
background-color: @theme_button_background;
21+
color: @theme_button_foreground;
22+
border-radius: 4px;
23+
border-width: 1px;
24+
border-color: @theme_mid_color;
25+
padding: 4px 8px;
26+
}
27+
28+
button:hover {
29+
background-color: @theme_selected_bg_color;
30+
}
31+
32+
/* Headerbars */
33+
headerbar {
34+
background-color: @theme_bg_color;
35+
color: @theme_fg_color;
36+
}
37+
38+
/* Optional: dark-specific tweaks */
39+
@define-color dark_bg_color #2e3436;
40+
@define-color dark_fg_color #eeeeec;
41+
42+
window:dark {
43+
background-color: @dark_bg_color;
44+
color: @dark_fg_color;
45+
}

0 commit comments

Comments
 (0)