diff --git a/app/components/flightlab/pfd/PfdAttitudeIndicator.vue b/app/components/flightlab/pfd/PfdAttitudeIndicator.vue index 19dab78..e9edc29 100644 --- a/app/components/flightlab/pfd/PfdAttitudeIndicator.vue +++ b/app/components/flightlab/pfd/PfdAttitudeIndicator.vue @@ -16,6 +16,8 @@ const pitchScale = computed(() => props.size / 60) const clipId = computed(() => `att-clip-${uid}`) const skyGradId = computed(() => `att-sky-${uid}`) const groundGradId = computed(() => `att-ground-${uid}`) +const WHITE = '#f4f6fb' +const YELLOW = '#ffe100' const pitchMarks = computed(() => { const marks: Array<{ deg: number; y: number; isLabel: boolean; width: number }> = [] @@ -82,12 +84,12 @@ const dotRadius = computed(() => 4) - - + + - - + + @@ -117,7 +119,7 @@ const dotRadius = computed(() => 4) :y1="0" :x2="size * 2" :y2="0" - stroke="white" + :stroke="WHITE" stroke-width="2" /> @@ -128,14 +130,14 @@ const dotRadius = computed(() => 4) :y1="mark.y" :x2="mark.width / 2" :y2="mark.y" - stroke="white" + :stroke="WHITE" :stroke-width="mark.isLabel ? 1.5 : 1" />