catppuccin / userstyles

🖌 Soothing pastel theme for Userstyles
MIT License
371 stars 109 forks source link

feat(amplenote): init #1030

Open stellophiliac opened 5 days ago

stellophiliac commented 5 days ago

🎉 Theme for Amplenote 🎉

Amplenote is a note-taking and task management platform.

preview

💬 Additional Comments 💬

nearly everything should be themed – some of the buttons with ripple effects behave weirdly, and i didn't theme the pro-only elements such as the graph and side panel

🗒 Checklist 🗒

stellophiliac commented 5 days ago

should be fixed! ^^

stellophiliac commented 4 days ago

template styling has been added the variables were remnants of when i was still working on the style and aren't needed anymore, so i removed those

stellophiliac commented 3 days ago

i'm having a bit of trouble themeing some bits:

these ripple buttons are a bit finicky and i can't seem to find where the colors are defined.

this thing in the calendar

these arrows in the task date selector, the popup disappears when i try to look at them in inspect

the task score thing – not sure if this is worth themeing

uncenter commented 3 days ago

these ripple buttons are a bit finicky and i can't seem to find where the colors are defined.

What do you mean ripple buttons? The squares with the hashtag in them? Or the three dots on the right?

these arrows in the task date selector, the popup disappears when i try to look at them in inspect

See https://github.com/catppuccin/userstyles/blob/main/docs/tips-and-tricks.md#how-can-i-inspect-hard-to-grab-elements.

the task score thing – not sure if this is worth themeing

That one is either really easy or impossible to theme ahah. If it as a <canvas> element, you can't. If it is SVGs, I think its worth theming and it shouldn't give you too much hassle.

stellophiliac commented 2 days ago

What do you mean ripple buttons? The squares with the hashtag in them? Or the three dots on the right?

the three dots on the right – they've got a ripple effect when you click on them, which is why i call them that

That one is either really easy or impossible to theme ahah. If it as a <canvas> element, you can't. If it is SVGs, I think its worth theming and it shouldn't give you too much hassle.

it's a lot of SVGs, and i can't seem to find how they're colored ...

uncenter commented 2 days ago

it's a lot of SVGs, and i can't seem to find how they're colored ...

How do I get to that view?

this thing in the calendar

Here you go:

    .calendar-pane .fc {
      .fc-timegrid-now-indicator-arrow {
        .line {
          border-bottom-color: @accent-color;
        }
        .material-icons {
          color: @accent-color;
        }
      }

      .fc-timegrid-now-indicator-line {
        border-color: darken(@accent-color, 10%);
      }
    }
stellophiliac commented 1 day ago

How do I get to that view?

open a note with completed tasks in note view, and check the "completed" pane on the bottom

uncenter commented 22 hours ago

How do I get to that view?

open a note with completed tasks in note view, and check the "completed" pane on the bottom

Here you go:

    #completed-tasks-stroke-gradient, #completed-tasks-fill-gradient {
      [offset="0%"] {
        stop-color: @maroon;
      }

      [offset="50%"] {
        stop-color: @peach;
      }

      [offset="100%"] {
        stop-color: @yellow;
      }
    }
stellophiliac commented 15 hours ago

hm, i've put that in the stylesheet on my end but it doesn't seem to work

uncenter commented 9 hours ago

Which one? Definitely working for me.

Before After
CleanShot 2024-07-04 at 07 46 39@2x CleanShot 2024-07-04 at 07 46 34@2x