Bedding Calculator

[insert_php] // GLOBALS
$calculatorName = ‘CAL-CU-LA-TOR’;
$calculatorDescription = ‘Custom Carbon Calculator for Laundry calculator’;
$defaultValue = 10000;
$primaryFontColor = ‘#FFFFFF’;
$thousandsSeparator = ‘,’;
$decimalSeparator = ‘.’;
$calculatorWidth = ‘100%’;
$fontName = ‘\’Montserrat\”;

// HEADER
$title = ‘Carbon Calculator for Laundry’;
$titleBackgroundColor = ‘#EAA106’;

// SUBHEADER
$inputBlockColor = ‘rgb(0, 153, 51)’;
$label = ‘ENTER # of SHEET SETS (single twin bed)’;
$content = ‘##**By not laundering, you save:’;

// RESULTS
$resultBackgroundColor = ‘#0083CA’;
$resultFontColor = ‘#C3E350’;
$emission = ‘Carbon Emissions (pounds)’;
$water = ‘Water (gallons)’;
$energy = ‘Energy (kWh)’;

// STYLE PARAMETERS
if ($_GET[‘style’] && $_GET[‘style’] == 1){
$fontName = ‘\’Ubuntu\”;
$defaultValue = 9800;
$titleBackgroundColor = ‘#F8B195’;
$inputBlockColor = ‘#F67280’;
$primaryFontColor = ‘#FEFEFE’;
$calculatorWidth = ‘60%’;
$resultBackgroundColor = ‘#355C7D’;
}
if ($_GET[‘style’] && $_GET[‘style’] == 2){
$fontName = ‘\’Darker Grotesque\”;
$defaultValue = 12000;
$titleBackgroundColor = ‘#A8A7A7’;
$inputBlockColor = ‘#CC527A’;
$primaryFontColor = ‘#FFFFFF’;
$calculatorWidth = ‘80%’;
$resultBackgroundColor = ‘#E8175D’;
}

[/insert_php]