Skip to content

Commit

Permalink
Skin Tweaks (#843)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Небольшие твики скина, в числе которых:
Смена сглаживания на Nearest Neighboor
Смена шрифта на MS Serif (Италик и мелкий всё так же Small Fonts)
Покраска и лёгкий сдвиг кнопки Fullscreen

## Почему это хорошо для игры
Допил скина, чётче картинка (благо новые полы позволяют) и чуть лучше
шрифт в рунчате (привет буква Ё)

## Изображения изменений
Мне лень

## Тестирование
Да

## Changelog
:cl:
tweak: Сглаживание по-умолчанию теперь точно изменено на "По соседним
пикселям"
tweak: Покрашена кнопка Fullscreen (пилим бюджет KEKW)
fix: В рунчате, большая буква "Ё" теперь отображается корректно, шрифт
рунчата был изменён на MS Serif
/:cl:
  • Loading branch information
AyIong authored Dec 11, 2023
1 parent fc8c87b commit 549d205
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions interface/skin.dmf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ menu "menu"
elem
name = "&Масштабирование"
category = "&Вид"
saved-params = "is-checked;command"
elem "NN"
name = "&По соседним пикселям"
command = ".winset \"paramapwindow.map.zoom-mode=distort\""
Expand Down Expand Up @@ -168,9 +167,9 @@ window "paramapwindow"
font-size = 7
text-color = none
is-default = true
saved-params = "icon-size"
zoom-mode = "normal"
style = ".center { text-align: center; } .maptext { font-family: 'Small Fonts'; font-size: 7px; -dm-text-outline: 1px black; color: white; line-height: 1.1; } .small { font-size: 6px; } .big { font-size: 8px; } .reallybig { font-size: 8px; } .extremelybig { font-size: 8px; } .clown { color: #FF69Bf;} .tajaran {color: #803B56;} .skrell {color: #00CED1;} .solcom {color: #22228B;} .com_srus {color: #7c4848;} .zombie\t{color: #ff0000;} .soghun {color: #228B22;} .vox {color: #AA00AA;} .diona {color: #804000; font-weight: bold;} .trinary {color: #727272;} .kidan {color: #664205;} .slime {color: #0077AA;} .drask {color: #a3d4eb;} .vulpkanin {color: #B97A57;} .abductor {color: #800080; font-style: italic;} .his_grace { color: #15D512; } .hypnophrase { color: #0d0d0d; font-weight: bold; } .yell { font-weight: bold; }"
saved-params = "icon-size;zoom-mode"
zoom-mode = "distort"
style = ".center { text-align: center; } .maptext { font-family: 'MS Serif'; font-size: 7px; -dm-text-outline: 1px black; color: white; line-height: 1.1; } .small { font-family: 'Small Fonts'; font-size: 6px; } .big { font-size: 8px; } .reallybig { font-size: 8px; } .extremelybig { font-size: 8px; } .clown { color: #FF69Bf;} .tajaran {color: #803B56;} .skrell {color: #00CED1;} .solcom {color: #22228B;} .com_srus {color: #7c4848;} .zombie\t{color: #ff0000;} .soghun {color: #228B22;} .vox {color: #AA00AA;} .diona {color: #804000; font-weight: bold;} .trinary {color: #727272;} .kidan {color: #664205;} .slime {color: #0077AA;} .drask {color: #a3d4eb;} .vulpkanin {color: #B97A57;} .abductor {color: #800080; font-style: italic;} .his_grace { color: #15D512; } .hypnophrase { color: #0d0d0d; font-weight: bold; } .yell { font-weight: bold; }" .italics { font-family: 'Small Fonts'; }"
on-show = ".winset \"menu.statusbar.is-checked=true?paramapwindow.status_bar.is-visible=true:paramapwindow.status_bar.is-visible=false\""
elem "title_browser"
type = BROWSER
Expand Down Expand Up @@ -318,7 +317,7 @@ window "rpane"
command = "Changelog"
elem "fullscreenb"
type = BUTTON
pos = 464,7
pos = 469,7
size = 70x16
saved-params = "is-checked"
text = "Fullscreen"
Expand Down
2 changes: 1 addition & 1 deletion modular_ss220/aesthetics/skin/code/darkmode.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/client/activate_darkmode()
. = ..()
winset(src, "rpane.fullscreenb", "background-color=#494949;text-color=#a4bad6")
winset(src, "rpane.fullscreenb", "background-color=#40628a;text-color=#ffffff")

/client/deactivate_darkmode()
. = ..()
Expand Down

0 comments on commit 549d205

Please sign in to comment.