defmodule MoonWeb.Pages.Theming.ThemingAndVisuals do @moduledoc false use MoonWeb, :live_view alias Moon.Autolayouts.TopToDown alias Moon.Components.Heading alias Moon.Components.Link alias Moon.Components.Text alias MoonWeb.Components.Page data(breadcrumbs, :any, default: [ %{ to: "#", name: "Tutorials" }, %{ to: "/tutorials/theming-and-visuals", name: "Theming and Visuals" } ] ) def handle_params(_params, uri, socket) do {:noreply, assign(socket, uri: uri)} end def render(assigns) do ~F""" Theming and visuals Theming and visuals is based on TailwindCSS rules. Text color Read more: https://tailwindcss.com/docs/text-color Background color Read more: https://tailwindcss.com/docs/background-color Border radius Read more: https://tailwindcss.com/docs/border-radius Margin Read more: https://tailwindcss.com/docs/margin Padding Read more: https://tailwindcss.com/docs/padding Responsive layout Read more: https://tailwindcss.com/docs/responsive-design """ end end