Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/_onclick/hud/hud.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// The default UI style is the first one in the list
GLOBAL_LIST_INIT(available_ui_styles, list(
"World of Darkness" = 'modular_darkpack/master_files/icons/hud/screen_darkness_new.dmi', // DARKPACK EDIT ADD - (Put at the top because it has almost full coverage now!)
"World-of-Darkness" = 'modular_darkpack/master_files/icons/hud/screen_darkness_new.dmi', // DARKPACK EDIT ADD - (Put at the top because it has almost full coverage now!)
"Pentex-Knox" = 'modular_darkpack/master_files/icons/hud/screen_pentexknox.dmi', // DARKPACK EDIT ADD - (Trasen-Knox logo with a Pentex logo)
/* // DARKPACK EDIT REMOVAL
"Midnight" = 'icons/hud/screen_midnight.dmi',
Expand Down
6 changes: 6 additions & 0 deletions code/game/objects/items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,12 @@
outline_color = COLOR_THEME_TRASENKNOX
if("detective")
outline_color = COLOR_THEME_DETECTIVE
// DARKPACK EDIT ADD START
if("pentex-knox")
outline_color = COLOR_THEME_TRASENKNOX
if("world-of-darkness")
outline_color = COLOR_WHITE
// DARKPACK EDIT ADD END
else //this should never happen, hopefully
outline_color = COLOR_WHITE
if(color)
Expand Down
20 changes: 20 additions & 0 deletions code/modules/tooltip/tooltip.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,26 @@
border-color: #2c0f0c;
background-color: #221c1a;
}

.pentex-knox .wrap {
border-color: #998e81;
}
.pentex-knox .content {
color: #3ce375;
border-color: #998e81;
background-color: #1e1d21;
}


.world-of-darkness .wrap {
border-color: #07060c;
}
.world-of-darkness .content {
color: #a39a9a;
border-color: #07060c;
background-color: #101419;
}

</style>
</head>
<body>
Expand Down
Loading