I was inspired by the German Wikipedia to tell the
AgentGPT how I imagine a rainbow to look like. Here my prompt:
Male bitte einen Regenbogen. Gemeint ist atmosphärisch-optisches Phänomen, das als kreisbogenförmiges farbiges Lichtband in einem von der Sonne beschienenen Regenschauer erscheint.
Generated such a fantasy rainbow. Looks a bit playful, but the color gradients also feel classy 🙂 . It is impressive how creative AgentGPT can do a job
. Caution! The picture 🌈 has addictive potential 😇 !
Here HTML + CSS code from
AgentGPT<!DOCTYPE html>
<html>
<head>
<title>Rainbow created with AgentGPT https://agentgpt.reworkd.ai</title>
<style>
body {
background-color: skyblue;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.rainbow {
width: 300px;
height: 300px;
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
border-radius: 50%;
animation: rotate 5s linear infinite;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="rainbow"></div>
</body>
</html>
#
AgentGPT #
rainbow #
Regenbogen #
RegenbogenCSS #
CSSRegenbogen