I'm making a website for a project and i've tried doing h1 { color: rgb(222, 222, 222,); } and it hasn't changed or anything
<html>
<head>
<meta charset="utf-8">
<style>
h1 {
color: rgb(222, 222, 222)
}
</style>
</head>
<body>
<h1> Welcome </h1>
</body>