:root {
–primary-color: #004a99;
–success-color: #28a745;
–background-color: #f8f9fa;
–text-color: #333;
–border-color: #ccc;
–card-background: #fff;
–error-color: #dc3545;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background-color: var(–background-color);
color: var(–text-color);
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 20px auto;
padding: 20px;
background-color: var(–card-background);
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: var(–primary-color);
text-align: center;
margin-bottom: 20px;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 1.8em;
border-bottom: 2px solid var(–primary-color);
padding-bottom: 10px;
margin-top: 30px;
}
h3 {
font-size: 1.4em;
margin-top: 20px;
}
.loan-calc-container {
background-color: var(–card-background);
padding: 25px;
border-radius: 8px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
}
.input-group {
margin-bottom: 20px;
text-align: left;
}
.input-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: var(–primary-color);
}
.input-group input[type=”number”],
.input-group select {
width: calc(100% – 22px); /* Account for padding and border */
padding: 10px;
border: 1px solid var(–border-color);
border-radius: 4px;
font-size: 1em;
box-sizing: border-box;
}
.input-group select {
appearance: none;
background-image: url(‘data:image/svg+xml;charset=US-ASCII,’);
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 10px 8px;
}
.input-group .helper-text {
font-size: 0.85em;
color: #6c757d;
margin-top: 5px;
display: block;
}
.input-group .error-message {
color: var(–error-color);
font-size: 0.9em;
margin-top: 5px;
display: none; /* Hidden by default */
}
.error-message.visible {
display: block;
}
button {
background-color: var(–primary-color);
color: white;
border: none;
padding: 12px 20px;
border-radius: 5px;
font-size: 1.1em;
cursor: pointer;
margin-right: 10px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #003366;
}
button.reset-button {
background-color: #6c757d;
}
button.reset-button:hover {
background-color: #5a6268;
}
button.copy-button {
background-color: #28a745;
}
button.copy-button:hover {
background-color: #218838;
}
#results {
margin-top: 30px;
padding: 20px;
background-color: var(–primary-color);
color: white;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
#results h3 {
color: white;
margin-bottom: 15px;
}
#results .main-result {
font-size: 2.5em;
font-weight: bold;
margin-bottom: 10px;
}
#results .intermediate-results div {
margin-bottom: 8px;
font-size: 1.1em;
}
#results .formula-explanation {
font-size: 0.9em;
margin-top: 15px;
padding-top: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#results .key-assumptions {
font-size: 0.85em;
margin-top: 15px;
color: rgba(255, 255, 255, 0.8);
}
.chart-container {
margin-top: 30px;
padding: 20px;
background-color: var(–card-background);
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
text-align: center;
}
.chart-container caption {
font-size: 1.2em;
font-weight: bold;
color: var(–primary-color);
margin-bottom: 15px;
display: block;
}
canvas {
max-width: 100%;
height: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 10px;
text-align: left;
border: 1px solid var(–border-color);
}
th {
background-color: var(–primary-color);
color: white;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
.article-content {
margin-top: 40px;
background-color: var(–card-background);
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.article-content h2 {
text-align: left;
margin-top: 0;
}
.article-content p, .article-content ul, .article-content ol {
margin-bottom: 20px;
font-size: 1.05em;
}
.article-content li {
margin-bottom: 10px;
}
.article-content a {
color: var(–primary-color);
text-decoration: none;
font-weight: bold;
}
.article-content a:hover {
text-decoration: underline;
}
.faq-section .faq-item {
border-bottom: 1px dashed var(–border-color);
padding-bottom: 15px;
margin-bottom: 15px;
}
.faq-section .faq-item:last-child {
border-bottom: none;
}
.faq-section h3 {
margin-bottom: 5px;
color: var(–primary-color);
cursor: pointer;
font-size: 1.2em;
}
.faq-section .faq-answer {
display: none;
margin-top: 10px;
font-size: 0.95em;
color: #555;
}
.faq-section .faq-answer.visible {
display: block;
}
.internal-links-list {
list-style: none;
padding: 0;
}
.internal-links-list li {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px dotted var(–border-color);
}
.internal-links-list li:last-child {
border-bottom: none;
}
.internal-links-list a {
font-weight: bold;
font-size: 1.1em;
}
.internal-links-list p {
font-size: 0.95em;
margin-top: 5px;
color: #555;
}
@media (max-width: 768px) {
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
.container {
padding: 15px;
}
button {
width: 100%;
margin-bottom: 10px;
margin-right: 0;
}
button:last-of-type {
margin-bottom: 0;
}
#results .main-result {
font-size: 2em;
}
}
Calorie Calculator by Weight and Height
Understand your daily energy needs with our comprehensive calorie calculator.
Calculate Your Daily Calorie Needs
Male
Female
Select your gender for accurate BMR calculation.
Enter your age in years.
Enter your weight in kilograms (kg).
Enter your height in centimeters (cm).
Sedentary (little or no exercise)
Lightly active (light exercise/sports 1-3 days/week)
Moderately active (moderate exercise/sports 3-5 days/week)
Very active (hard exercise/sports 6-7 days a week)
Extra active (very hard exercise/sports & physical job)
Choose the option that best describes your lifestyle.
Your Estimated Daily Calorie Needs
| Variable | Description | Value | Unit |
|---|---|---|---|
| Gender | Biological sex | — | N/A |
| Age | Years | — | Years |
| Weight | Body mass | — | kg |
| Height | Body length | — | cm |
| BMR (Mifflin-St Jeor) | Calories burned at rest | — | kcal/day |
| Activity Factor | Multiplier for energy expenditure | — | N/A |
| TDEE | Total Daily Energy Expenditure | — | kcal/day |
What is a Calorie Calculator by Weight and Height?
A calorie calculator by weight and height is a digital tool designed to estimate your daily energy requirements. It helps you understand how many calories your body needs to maintain its current weight, lose weight, or gain weight, based on your physical characteristics and lifestyle. This tool is fundamental for anyone looking to manage their weight effectively or improve their overall health and fitness. By inputting key personal metrics, you receive an estimate of your Total Daily Energy Expenditure (TDEE), which is the total number of calories your body burns in a 24-hour period.
Who should use it: Anyone interested in weight management (loss, gain, or maintenance), athletes fine-tuning their nutrition, individuals seeking to understand their energy balance, or those recovering from illness or injury. It’s a foundational step for building a healthy eating plan.
Common misconceptions: A calorie calculator provides an estimate, not an exact science. It doesn’t account for all individual metabolic variations, hormonal influences, or specific nutrient needs. Furthermore, focusing solely on calories without considering nutrient density can be misleading for optimal health. The primary goal of a calorie calculator by weight and height is to establish a baseline for energy intake.
Calorie Calculator by Weight and Height Formula and Mathematical Explanation
The most common method for calculating daily calorie needs involves two main steps: determining your Basal Metabolic Rate (BMR) and then multiplying it by an activity factor to arrive at your Total Daily Energy Expenditure (TDEE).
We will use the Mifflin-St Jeor equation, which is widely considered one of the most accurate formulas:
Basal Metabolic Rate (BMR) Calculation
BMR is the number of calories your body burns at rest to maintain basic life-sustaining functions like breathing, circulation, and cell production.
For Men: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) + 5
For Women: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) – 161
Total Daily Energy Expenditure (TDEE) Calculation
TDEE is your BMR multiplied by an activity factor that represents your lifestyle. This gives a more comprehensive picture of your daily calorie needs.
TDEE = BMR × Activity Factor
The activity factors are typically:
- Sedentary: 1.2
- Lightly active: 1.375
- Moderately active: 1.55
- Very active: 1.725
- Extra active: 1.9
Variable Explanation Table
| Variable | Meaning | Unit | Typical Range |
|---|---|---|---|
| Gender | Biological sex used in BMR formula differentiation | Male/Female | N/A |
| Weight | Body mass | Kilograms (kg) | 18 kg – 500+ kg |
| Height | Body length | Centimeters (cm) | 50 cm – 250 cm |
| Age | Years since birth | Years | 1 – 120 |
| BMR | Calories burned at complete rest | kcal/day | Varies greatly by individual, but typically 1000-2000 kcal/day |
| Activity Factor | Multiplier for daily physical activity | Multiplier (decimal) | 1.2 – 1.9 |
| TDEE | Total estimated calories burned per day | kcal/day | Varies greatly, often 1500-3500+ kcal/day |
Practical Examples (Real-World Use Cases)
Let’s look at two common scenarios for using this calorie calculator by weight and height:
Example 1: Weight Loss Goal
Scenario: Sarah is a 28-year-old female, weighing 75 kg and standing 165 cm tall. She works a desk job and exercises lightly 2 times a week. She wants to lose weight.
Inputs:
- Gender: Female
- Age: 28 years
- Weight: 75 kg
- Height: 165 cm
- Activity Level: Lightly active (factor: 1.375)
Calculations:
- BMR = (10 × 75) + (6.25 × 165) – (5 × 28) – 161 = 750 + 1031.25 – 140 – 161 = 1480.25 kcal
- TDEE = 1480.25 × 1.375 = 2035.3 kcal (approx.)
Results:
- BMR: ~1480 kcal
- TDEE: ~2035 kcal
Interpretation: Sarah needs approximately 2035 calories per day to maintain her current weight. To lose weight, she should aim for a calorie deficit. A common recommendation is a deficit of 500 calories per day for about 0.5 kg (1 lb) of weight loss per week. Therefore, she might aim for around 1535 calories per day (2035 – 500).
Example 2: Muscle Gain Goal
Scenario: Mark is a 22-year-old male, weighing 80 kg and standing 180 cm tall. He trains intensely at the gym 5 days a week and has a physically demanding part-time job.
Inputs:
- Gender: Male
- Age: 22 years
- Weight: 80 kg
- Height: 180 cm
- Activity Level: Very active (factor: 1.725)
Calculations:
- BMR = (10 × 80) + (6.25 × 180) – (5 × 22) + 5 = 800 + 1125 – 110 + 5 = 1820 kcal
- TDEE = 1820 × 1.725 = 3139.5 kcal (approx.)
Results:
- BMR: ~1820 kcal
- TDEE: ~3140 kcal
Interpretation: Mark’s body burns approximately 3140 calories per day to maintain his current weight with his intense activity level. To gain muscle mass, he needs to consume more calories than he burns (a calorie surplus). A moderate surplus of 250-500 calories per day is often recommended for lean muscle gain. He might aim for around 3390 to 3640 calories daily.
How to Use This Calorie Calculator by Weight and Height
Using our calorie calculator by weight and height is straightforward. Follow these steps:
- Select Gender: Choose ‘Male’ or ‘Female’ as prompted.
- Enter Age: Input your current age in years.
- Input Weight: Provide your weight in kilograms (kg). Ensure accuracy for best results.
- Input Height: Provide your height in centimeters (cm).
- Choose Activity Level: Select the option that most accurately reflects your average daily physical activity. Be honest to get a realistic estimate.
- Click Calculate: Press the “Calculate Calories” button.
How to read results: The calculator will display your estimated Basal Metabolic Rate (BMR) – the calories you burn at rest – and your Total Daily Energy Expenditure (TDEE) – your total daily calorie needs including activity. The main highlighted result is your TDEE.
Decision-making guidance:
- To lose weight: Consume fewer calories than your TDEE (create a deficit).
- To maintain weight: Consume calories equal to your TDEE.
- To gain weight (muscle or mass): Consume more calories than your TDEE (create a surplus).
Remember to adjust these targets based on your progress and consult a healthcare professional or registered dietitian for personalized advice. For more in-depth insights, consider exploring healthy eating plans.
Key Factors That Affect Calorie Calculator Results
While our calorie calculator by weight and height provides a strong baseline, several other factors can influence your actual daily energy expenditure. Understanding these can help you interpret your results more effectively:
- Body Composition: Muscle tissue burns more calories at rest than fat tissue. Someone with a higher muscle mass will have a higher BMR than someone of the same weight and height but with less muscle. Our calculator estimates based on general population averages.
- Genetics: Individual metabolic rates can vary significantly due to genetic predispositions. Some people naturally burn calories faster or slower than others, irrespective of the standard formulas.
- Hormonal Factors: Hormones play a crucial role in metabolism. Conditions like hypothyroidism (underactive thyroid) can significantly lower metabolic rate, while hyperthyroidism can increase it. Pregnancy and breastfeeding also dramatically alter calorie needs.
- Environmental Factors: Exposure to extreme temperatures (very cold or very hot) can increase calorie expenditure as the body works to maintain its core temperature.
- Health Conditions & Medications: Certain illnesses (like infections or fevers) can temporarily increase metabolic rate. Some medications can also affect metabolism and appetite.
- Dietary Thermogenesis (TEF): The thermic effect of food (TEF) refers to the calories burned during digestion, absorption, and metabolism of food. Protein has a higher TEF than carbohydrates or fats, meaning your body burns more calories digesting protein. This is not directly factored into the basic BMR/TDEE formulas.
- Sleep Quality and Quantity: Poor or insufficient sleep can disrupt hormones that regulate appetite and metabolism, potentially affecting your daily energy expenditure and calorie needs.
Frequently Asked Questions (FAQ)
Q1: Is the Mifflin-St Jeor equation the only way to calculate calories?
Q2: What is the difference between BMR and TDEE?
Q3: How accurate is this calorie calculator?
Q4: Can I use this calculator if I am pregnant or breastfeeding?
Q5: What if my weight or height is outside the typical range?
Q6: Should I eat exactly my TDEE?
Q7: Does “Sedentary” mean I don’t exercise at all?
Q8: How often should I recalculate my calorie needs?
Related Tools and Internal Resources
-
Healthy Eating Plans Explained
Discover how to structure your meals and select nutrient-dense foods for optimal health and weight management.
-
Calorie Deficit Calculator
Calculate the precise calorie deficit needed to achieve your weight loss goals safely and effectively.
-
Calorie Surplus Calculator
Determine the optimal calorie surplus for lean muscle gain and effective bulking phases.
-
Understanding Macronutrients: Protein, Carbs, and Fats
Learn the roles of protein, carbohydrates, and fats in your diet and how to balance them for your goals.
-
BMI Calculator Guide
Explore what Body Mass Index (BMI) is, how it’s calculated, and what your BMI means for your health.
-
Advanced BMR Calculator
Dive deeper into your Basal Metabolic Rate with our advanced calculator, offering multiple formula options.
var chartInstance = null; // Global variable to hold the chart instance
function isNumeric(value) {
return !isNaN(parseFloat(value)) && isFinite(value);
}
function validateInput(id, min, max, message) {
var input = document.getElementById(id);
var value = parseFloat(input.value);
var errorDiv = document.getElementById(id + “-error”);
var isValid = true;
if (input.value === “”) {
errorDiv.textContent = “This field cannot be empty.”;
errorDiv.classList.add(“visible”);
isValid = false;
} else if (!isNumeric(value)) {
errorDiv.textContent = “Please enter a valid number.”;
errorDiv.classList.add(“visible”);
isValid = false;
} else if (value max) {
errorDiv.textContent = message;
errorDiv.classList.add(“visible”);
isValid = false;
} else {
errorDiv.textContent = “”;
errorDiv.classList.remove(“visible”);
}
return isValid;
}
function calculateCalories() {
var gender = document.getElementById(“gender”).value;
var age = parseFloat(document.getElementById(“age”).value);
var weight = parseFloat(document.getElementById(“weight”).value);
var height = parseFloat(document.getElementById(“height”).value);
var activityLevel = parseFloat(document.getElementById(“activityLevel”).value);
var ageError = document.getElementById(“age-error”);
var weightError = document.getElementById(“weight-error”);
var heightError = document.getElementById(“height-error”);
var allValid = true;
if (!validateInput(“age”, 1, 120, “Age must be between 1 and 120.”)) { allValid = false; }
if (!validateInput(“weight”, 18, 500, “Weight must be between 18 and 500 kg.”)) { allValid = false; }
if (!validateInput(“height”, 50, 250, “Height must be between 50 and 250 cm.”)) { allValid = false; }
if (!allValid) {
document.getElementById(“results-section”).style.display = “none”;
return;
}
var bmr = 0;
if (gender === “male”) {
bmr = (10 * weight) + (6.25 * height) – (5 * age) + 5;
} else { // female
bmr = (10 * weight) + (6.25 * height) – (5 * age) – 161;
}
var tdee = bmr * activityLevel;
document.getElementById(“basalMetabolicRate”).textContent = “BMR: ” + bmr.toFixed(2) + ” kcal”;
document.getElementById(“totalDailyCalories”).textContent = tdee.toFixed(0);
document.getElementById(“results-section”).style.display = “block”;
// Update table
document.getElementById(“tableGender”).textContent = gender.charAt(0).toUpperCase() + gender.slice(1);
document.getElementById(“tableAge”).textContent = age.toFixed(0);
document.getElementById(“tableWeight”).textContent = weight.toFixed(1);
document.getElementById(“tableHeight”).textContent = height.toFixed(0);
document.getElementById(“tableBMR”).textContent = bmr.toFixed(2);
document.getElementById(“tableActivityFactor”).textContent = activityLevel.toFixed(3);
document.getElementById(“tableTDEE”).textContent = tdee.toFixed(0);
updateChart(bmr, tdee, activityLevel);
}
function updateChart(bmr, tdee, activityFactor) {
var ctx = document.getElementById(‘calorieChart’).getContext(‘2d’);
var sedentaryTDEE = bmr * 1.2;
var lightTDEE = bmr * 1.375;
var moderateTDEE = bmr * 1.55;
var veryActiveTDEE = bmr * 1.725;
var extraActiveTDEE = bmr * 1.9;
var activityLabels = [‘Sedentary’, ‘Lightly Active’, ‘Moderately Active’, ‘Very Active’, ‘Extra Active’];
var tdeeValues = [sedentaryTDEE, lightTDEE, moderateTDEE, veryActiveTDEE, extraActiveTDEE];
if (chartInstance) {
chartInstance.destroy(); // Destroy previous chart instance
}
chartInstance = new Chart(ctx, {
type: ‘bar’,
data: {
labels: activityLabels,
datasets: [{
label: ‘BMR (Resting Calories)’,
data: [bmr, bmr, bmr, bmr, bmr], // BMR is constant for these calculations
backgroundColor: ‘rgba(0, 74, 153, 0.6)’,
borderColor: ‘rgba(0, 74, 153, 1)’,
borderWidth: 1
}, {
label: ‘TDEE (Total Daily Energy Expenditure)’,
data: tdeeValues,
backgroundColor: ‘rgba(40, 167, 69, 0.6)’,
borderColor: ‘rgba(40, 167, 69, 1)’,
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: ‘Calories (kcal)’
}
}
},
plugins: {
legend: {
position: ‘top’,
},
title: {
display: true,
text: ‘Calorie Needs Across Activity Levels’
}
}
}
});
}
function resetCalculator() {
document.getElementById(“gender”).value = “male”;
document.getElementById(“age”).value = “”;
document.getElementById(“weight”).value = “”;
document.getElementById(“height”).value = “”;
document.getElementById(“activityLevel”).value = “1.2”;
document.getElementById(“age-error”).textContent = “”;
document.getElementById(“age-error”).classList.remove(“visible”);
document.getElementById(“weight-error”).textContent = “”;
document.getElementById(“weight-error”).classList.remove(“visible”);
document.getElementById(“height-error”).textContent = “”;
document.getElementById(“height-error”).classList.remove(“visible”);
document.getElementById(“totalDailyCalories”).textContent = “–“;
document.getElementById(“basalMetabolicRate”).textContent = “BMR: — kcal”;
document.getElementById(“results-section”).style.display = “none”;
// Reset table
document.getElementById(“tableGender”).textContent = “–“;
document.getElementById(“tableAge”).textContent = “–“;
document.getElementById(“tableWeight”).textContent = “–“;
document.getElementById(“tableHeight”).textContent = “–“;
document.getElementById(“tableBMR”).textContent = “–“;
document.getElementById(“tableActivityFactor”).textContent = “–“;
document.getElementById(“tableTDEE”).textContent = “–“;
// Reset chart (clear canvas if needed or redraw with defaults)
var ctx = document.getElementById(‘calorieChart’).getContext(‘2d’);
if (chartInstance) {
chartInstance.destroy();
chartInstance = null;
}
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height); // Clear canvas
}
function copyResults() {
var mainResult = document.getElementById(“totalDailyCalories”).textContent;
var bmrResult = document.getElementById(“basalMetabolicRate”).textContent;
var gender = document.getElementById(“tableGender”).textContent;
var age = document.getElementById(“tableAge”).textContent;
var weight = document.getElementById(“tableWeight”).textContent;
var height = document.getElementById(“tableHeight”).textContent;
var activityFactor = document.getElementById(“tableActivityFactor”).textContent;
var tdee = document.getElementById(“tableTDEE”).textContent;
if (mainResult === “–“) {
alert(“Please calculate your calories first.”);
return;
}
var assumptions = “Key Assumptions:\n”;
assumptions += “- Gender: ” + gender + “\n”;
assumptions += “- Age: ” + age + ” years\n”;
assumptions += “- Weight: ” + weight + ” kg\n”;
assumptions += “- Height: ” + height + ” cm\n”;
assumptions += “- Activity Factor: ” + activityFactor + “\n”;
var textToCopy = “Your Estimated Daily Calorie Needs:\n”;
textToCopy += “Total Daily Energy Expenditure (TDEE): ” + mainResult + “\n”;
textToCopy += bmrResult + “\n\n”;
textToCopy += assumptions;
// Use a temporary textarea to copy
var textArea = document.createElement(“textarea”);
textArea.value = textToCopy;
document.body.appendChild(textArea);
textArea.select();
try {
var successful = document.execCommand(‘copy’);
var msg = successful ? ‘Results copied to clipboard!’ : ‘Copying failed!’;
// Simple feedback – ideally use a toast or notification
alert(msg);
} catch (err) {
alert(‘Oops, unable to copy’);
}
document.body.removeChild(textArea);
}
function toggleFaq(element) {
var answer = element.nextElementSibling;
answer.classList.toggle(“visible”);
}
// Initial load – potentially trigger calculation if default values are set and meaningful
// Or just ensure the canvas is cleared if no initial calculation is desired.
window.onload = function() {
// Optionally, pre-fill some defaults and calculate
// calculateCalories(); // Uncomment to calculate with default values on load
// Ensure canvas is ready even if no calculation yet
var ctx = document.getElementById(‘calorieChart’).getContext(‘2d’);
if (!chartInstance) {
chartInstance = new Chart(ctx, {
type: ‘bar’,
data: {
labels: [‘Sedentary’, ‘Lightly Active’, ‘Moderately Active’, ‘Very Active’, ‘Extra Active’],
datasets: [{
label: ‘BMR (Resting Calories)’,
data: [0, 0, 0, 0, 0],
backgroundColor: ‘rgba(0, 74, 153, 0.6)’,
borderColor: ‘rgba(0, 74, 153, 1)’,
borderWidth: 1
}, {
label: ‘TDEE (Total Daily Energy Expenditure)’,
data: [0, 0, 0, 0, 0],
backgroundColor: ‘rgba(40, 167, 69, 0.6)’,
borderColor: ‘rgba(40, 167, 69, 1)’,
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: ‘Calories (kcal)’
}
}
},
plugins: {
legend: {
position: ‘top’,
},
title: {
display: true,
text: ‘Calorie Needs Across Activity Levels’
}
}
}
});
}
};