HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wptalentcloud/wp-content/plugins/code-snippets/css/common/_theme.scss
@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);
		}
	}
}