Compare commits
No commits in common. "dev-sekretaerbaer.de" and "develop" have entirely different histories.
dev-sekret
...
develop
8 changed files with 0 additions and 11927 deletions
Binary file not shown.
Before Width: | Height: | Size: 484 KiB |
Binary file not shown.
Before Width: | Height: | Size: 530 KiB |
File diff suppressed because one or more lines are too long
|
@ -1,35 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* Copyright (C) 2010-2025, the Friendica project
|
||||
* SPDX-FileCopyrightText: 2010-2025 the Friendica project
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*
|
||||
* Name: Bookface Auto Color Mode
|
||||
* Licence: AGPL
|
||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||
* Accented: Yes
|
||||
* Version: 1.7
|
||||
*/
|
||||
// if there is no cookie create one
|
||||
use Friendica\DI;
|
||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
||||
|
||||
$accentColor = new Color($scheme_accent);
|
||||
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
|
||||
if ($customColor){
|
||||
$customColor = new Color(''.$customColor.'');
|
||||
}
|
||||
$menu_background_hover_color = 'rgba(128,128,128,.1)';
|
||||
$nav_bg = '#ffffff';
|
||||
$background_color = '#f2f4f7';
|
||||
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->getHex();
|
||||
// override ugly blue accent color and prevent setting accent to nav or bg color
|
||||
if ( $link_color == "#1e87c2" || $link_color == $nav_bg || $link_color == $background_color ){
|
||||
$link_color = "#0066ff";
|
||||
}
|
||||
$nav_icon_color = '#65686C';
|
||||
$font_color = '#313131';
|
||||
$font_color_darker = '#333';
|
||||
$contentbg_transp = '0';
|
File diff suppressed because one or more lines are too long
|
@ -1,37 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* Copyright (C) 2010-2025, the Friendica project
|
||||
* SPDX-FileCopyrightText: 2010-2025 the Friendica project
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*
|
||||
* Name: Bookface Dark
|
||||
* Licence: AGPL
|
||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||
* Accented: yes
|
||||
* Version: 1.7
|
||||
*/
|
||||
use Friendica\DI;
|
||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
||||
|
||||
$accentColor = new Color($scheme_accent);
|
||||
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
|
||||
if ($customColor){
|
||||
$customColor = new Color(''.$customColor.'');
|
||||
}
|
||||
//$customColor = ($customColor) ?: new Color(''.$customColor.'');
|
||||
|
||||
$menu_background_hover_color = ($customColor) ? '#'.$customColor->darken(20) : '#'.$accentColor->darken(20);
|
||||
$nav_bg = '#252728';
|
||||
$background_color = '#1C1C1D';
|
||||
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->lighten(10);
|
||||
// override ugly blue accent color and prevent setting accent to nav or bg color
|
||||
if ( $link_color == "#33a2e0" || $link_color == $nav_bg || $link_color == $background_color ){
|
||||
$link_color = "#0066ff";
|
||||
}
|
||||
$nav_icon_color = '#B0B3B8';
|
||||
$font_color = '#cccccc';
|
||||
$font_color_darker = '#acacac';
|
||||
$font_color_lighter = '#444444';
|
||||
$contentbg_transp = '0';
|
File diff suppressed because one or more lines are too long
|
@ -1,35 +0,0 @@
|
|||
<?php
|
||||
/*
|
||||
* Copyright (C) 2010-2025, the Friendica project
|
||||
* SPDX-FileCopyrightText: 2010-2025 the Friendica project
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*
|
||||
* Name: Bookface Light
|
||||
* Licence: AGPL
|
||||
* Author: Pygoscelis Papua @randompenguin@friendica.world feb @feb@loma.ml Phil @phil@loma.ml
|
||||
* Overwrites: nav_bg, nav_icon_color, background_color, background_image, contentbg_transp
|
||||
* Accented: yes
|
||||
* Version: 1.7
|
||||
*/
|
||||
use Friendica\DI;
|
||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
||||
|
||||
$accentColor = new Color($scheme_accent);
|
||||
$customColor = DI::pConfig()->get($uid, 'frio', 'link_color') ?: '';
|
||||
if ($customColor){
|
||||
$customColor = new Color(''.$customColor.'');
|
||||
}
|
||||
$menu_background_hover_color = ($customColor) ? '#'.$customColor->lighten(45) : '#'.$accentColor->lighten(45);
|
||||
$nav_bg = '#ffffff';
|
||||
$background_color = '#f2f4f7';
|
||||
$link_color = ($customColor) ? '#'.$customColor->getHex() : '#'.$accentColor->lighten(10);
|
||||
// override ugly blue accent color and prevent setting accent to nav or bg color
|
||||
if ( $link_color == "#33a2e0" || $link_color == $nav_bg || $link_color == $background_color ){
|
||||
$link_color = "#0066ff";
|
||||
}
|
||||
$nav_icon_color = '#65686C';
|
||||
$font_color = '#313131';
|
||||
$font_color_darker = '#333';
|
||||
$contentbg_transp = 100;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue