| Server IP : 31.214.179.3 / Your IP : 216.73.216.84 Web Server : Apache System : Linux hostingsrv125.dondominio.com 6.12.96+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.96-1 (2026-07-20) x86_64 User : ( 1156851) PHP Version : 8.5.8 Disable Function : system,passthru,popen,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,exec,ini_alter,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,mail,eval MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /hosting/www/thermatron.es/public/wp-content/plugins/code-snippets/css/common/ |
Upload File : |
@use 'sass:color';
$accent: #2271b1;
$primary: #03c7d2;
$secondary: #d46f4d;
$outline: #9e9e9e;
$brand-discord: #5865f2;
$brand-facebook: #3b5998;
$cloud: #00bcd4;
$cloud-update: #ff9800;
/* format: background-color [color] */
$badges: (
php: #1d97c6,
html: #ef6a36,
css: #9b59b6,
js: #ffeb3b #1c1f20,
cond: #2eae95,
core: #61c5cb,
pro: #f7e8e3 #df9279,
cloud: $cloud,
bundles: #50575e,
cloud_search: #ff9800,
private: #f7e6be #ca961b,
public: #dbebf7 $accent,
success: #d3e8d1 #447340,
failure: #fad7c1 #a24b16,
info: #d2e6f4 #2b71a3,
neutral: #e2e5e5 #6c7e7e,
special: #dfc5ef #6e249c
);
$notices: (
success: #d3e9d3 #377a37,
warning: #f2ebc3 #b0730a,
error: #f8d7da #721c24,
);
@function contrasting-text-color($bg-color) {
$sum: 0;
@each $color, $multiplier in (red 0.299, green 0.587, blue 0.114) {
$sum: $sum + color.channel($bg-color, $color, $space: rgb) * $multiplier;
}
@return if ($sum > 186, #1c1f20, #fff)
}
@mixin link-colors($color, $lightness: 15%) {
a {
color: $color;
&:hover, &:active, &:focus {
color: color.adjust($color, $lightness: $lightness);
}
}
}